]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
tlan: Don't scream if no link
authorOndrej Zary <linux@rainbow-software.org>
Mon, 30 Jun 2014 16:38:32 +0000 (18:38 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 8 Jul 2014 00:06:52 +0000 (17:06 -0700)
Remove excess printks when the link is down.

Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/tlan.c
drivers/net/ethernet/ti/tlan.h

index 3b8364568a6a222c07413f59c15b09cc57bc2389..872f94c7f1cfbb0417b556155fb3f4c4c655c90a 100644 (file)
@@ -1198,9 +1198,6 @@ static irqreturn_t tlan_handle_interrupt(int irq, void *dev_id)
 
 static int tlan_close(struct net_device *dev)
 {
-       struct tlan_priv *priv = netdev_priv(dev);
-
-       priv->neg_be_verbose = 0;
        tlan_stop(dev);
 
        free_irq(dev->irq, dev);
@@ -2701,12 +2698,6 @@ static void tlan_phy_finish_auto_neg(struct net_device *dev)
                /* Wait for 8 sec to give the process
                 * more time.  Perhaps we should fail after a while.
                 */
-               if (!priv->neg_be_verbose++) {
-                       pr_info("Giving autonegotiation more time.\n");
-                       pr_info("Please check that your adapter has\n");
-                       pr_info("been properly connected to a HUB or Switch.\n");
-                       pr_info("Trying to establish link in the background...\n");
-               }
                tlan_set_timer(dev, (8*HZ), TLAN_TIMER_PHY_FINISH_AN);
                return;
        }
index b6ceebaa2185654dbbdf80a21fd65fd0707703af..e9928411827e9e58e09cb81cee6dcdb419ba042b 100644 (file)
@@ -208,7 +208,6 @@ struct tlan_priv {
        u8                      tlan_full_duplex;
        spinlock_t              lock;
        struct work_struct                      tlan_tqueue;
-       u8                      neg_be_verbose;
 };