mirror of https://gitee.com/openkylin/linux.git
sh_eth: convert pr_*() to netdev_*() calls
Convert pr_*() to netdev_*() calls as the latter provide info on a device. Suggested-by: Joe Perches <joe@perches.com> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
264be2f5a9
commit
f75f14ec2f
|
@ -400,7 +400,8 @@ static void sh_eth_select_mii(struct net_device *ndev)
|
|||
value = 0x0;
|
||||
break;
|
||||
default:
|
||||
pr_warn("PHY interface mode was not setup. Set to MII.\n");
|
||||
netdev_warn(ndev,
|
||||
"PHY interface mode was not setup. Set to MII.\n");
|
||||
value = 0x1;
|
||||
break;
|
||||
}
|
||||
|
@ -854,7 +855,7 @@ static int sh_eth_check_reset(struct net_device *ndev)
|
|||
cnt--;
|
||||
}
|
||||
if (cnt <= 0) {
|
||||
pr_err("Device reset failed\n");
|
||||
netdev_err(ndev, "Device reset failed\n");
|
||||
ret = -ETIMEDOUT;
|
||||
}
|
||||
return ret;
|
||||
|
@ -2924,7 +2925,7 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
/* print device information */
|
||||
pr_info("Base address at 0x%x, %pM, IRQ %d.\n",
|
||||
netdev_info(ndev, "Base address at 0x%x, %pM, IRQ %d.\n",
|
||||
(u32)ndev->base_addr, ndev->dev_addr, ndev->irq);
|
||||
|
||||
platform_set_drvdata(pdev, ndev);
|
||||
|
|
Loading…
Reference in New Issue