Commit 4addbcb3 authored by YueHaibing's avatar YueHaibing Committed by David S. Miller
Browse files

enetc: Fix inconsistent IS_ERR and PTR_ERR



The proper pointer to be passed as argument is hw
Detected using Coccinelle.

Fixes: 6517798d ("enetc: Make MDIO accessors more generic and export to include/linux/fsl")
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Reviewed-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0d6e5bfc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ static int enetc_pci_mdio_probe(struct pci_dev *pdev,
	}

	hw = enetc_hw_alloc(dev, port_regs);
	if (IS_ERR(enetc_hw_alloc)) {
	if (IS_ERR(hw)) {
		err = PTR_ERR(hw);
		goto err_hw_alloc;
	}