[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1427231246-1782-1-git-send-email-cliff_clark@selinc.com>
Date: Tue, 24 Mar 2015 14:07:26 -0700
From: "Cliff Clark" <cliff_clark@...inc.com>
To: LeoLi@...escale.com
Cc: netdev@...r.kernel.org, Cliff Clark <cliff_clark@...inc.com>
Subject: [PATCH] ucc_geth: Intialize link state to down before register_netdev
From: Cliff Clark <cliff_clark@...inc.com>
ucc_geth was indicating link up after a port is administratively enabled even
when nothing is plugged in. This causes user-space tools to see a spurious link
up the first time after boot.
Signed-off-by: Cliff Clark <cliff_clark@...inc.com>
---
drivers/net/ethernet/freescale/ucc_geth.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/net/ethernet/freescale/ucc_geth.c b/drivers/net/ethernet/freescale/ucc_geth.c
index 357e8b57..56b774d 100644
--- a/drivers/net/ethernet/freescale/ucc_geth.c
+++ b/drivers/net/ethernet/freescale/ucc_geth.c
@@ -3893,6 +3893,9 @@ static int ucc_geth_probe(struct platform_device* ofdev)
ugeth->phy_interface = phy_interface;
ugeth->max_speed = max_speed;
+ /* Carrier starts down, phylib will bring it up */
+ netif_carrier_off(dev);
+
err = register_netdev(dev);
if (err) {
if (netif_msg_probe(ugeth))
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists