netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] sh_eth: Use platform device for printing before register_netdev()
@ 2017-05-18 13:01 Geert Uytterhoeven
  2017-05-18 13:01 ` [PATCH 2/2] sh_eth: Do not print an error message for probe deferral Geert Uytterhoeven
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2017-05-18 13:01 UTC (permalink / raw)
  To: Sergei Shtylyov, David S . Miller
  Cc: Laurent Pinchart, netdev, linux-renesas-soc, Geert Uytterhoeven

The MDIO initialization failure message is printed using the network
device, before it has been registered, leading to:

     (null): failed to initialise MDIO

Use the platform device instead to fix this:

    sh-eth ee700000.ethernet: failed to initialise MDIO

Fixes: daacf03f0bbfefee ("sh_eth: Register MDIO bus before registering the network device")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/net/ethernet/renesas/sh_eth.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/renesas/sh_eth.c b/drivers/net/ethernet/renesas/sh_eth.c
index f68c4db656eda846..c85222b02754f5a7 100644
--- a/drivers/net/ethernet/renesas/sh_eth.c
+++ b/drivers/net/ethernet/renesas/sh_eth.c
@@ -3220,7 +3220,7 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
 	/* MDIO bus init */
 	ret = sh_mdio_init(mdp, pd);
 	if (ret) {
-		dev_err(&ndev->dev, "failed to initialise MDIO\n");
+		dev_err(&pdev->dev, "failed to initialise MDIO\n");
 		goto out_release;
 	}
 
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-05-18 16:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-18 13:01 [PATCH 1/2] sh_eth: Use platform device for printing before register_netdev() Geert Uytterhoeven
2017-05-18 13:01 ` [PATCH 2/2] sh_eth: Do not print an error message for probe deferral Geert Uytterhoeven
2017-05-18 13:08   ` Laurent Pinchart
2017-05-18 15:21   ` David Miller
2017-05-18 16:37   ` Sergei Shtylyov
2017-05-18 13:08 ` [PATCH 1/2] sh_eth: Use platform device for printing before register_netdev() Laurent Pinchart
2017-05-18 15:21 ` David Miller
2017-05-18 16:32 ` Sergei Shtylyov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).