staging: most: aim-network: avoid calling netdev_info()
authorAndrey Shvetsov <andrey.shvetsov@k2l.de>
Tue, 4 Oct 2016 15:10:18 +0000 (17:10 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Oct 2016 08:25:12 +0000 (10:25 +0200)
This patch removes the needless call of function netdev_info() from
function most_nd_setup().

Signed-off-by: Andrey Shvetsov <andrey.shvetsov@k2l.de>
Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/most/aim-network/networking.c

index 9e1b19b..fe0d516 100644 (file)
@@ -211,7 +211,7 @@ static int most_nd_open(struct net_device *dev)
 
        nd->iface->request_netinfo(nd->iface, nd->tx.ch_id);
        wait_res = wait_for_completion_interruptible_timeout(
-                               &nd->mac_compl, msecs_to_jiffies(5000));
+                          &nd->mac_compl, msecs_to_jiffies(5000));
        if (!wait_res) {
                netdev_err(dev, "mac timeout\n");
                return -EBUSY;
@@ -288,7 +288,6 @@ static const struct net_device_ops most_nd_ops = {
 
 static void most_nd_setup(struct net_device *dev)
 {
-       netdev_info(dev, "setup net device\n");
        ether_setup(dev);
        dev->netdev_ops = &most_nd_ops;
 }