mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
enetc: Fix inconsistent IS_ERR and PTR_ERR
The proper pointer to be passed as argument is hw
Detected using Coccinelle.
Fixes: 6517798dd3
("enetc: Make MDIO accessors more generic and export to include/linux/fsl")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0d6e5bfc9c
commit
4addbcb387
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user