]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: most: net: remove redundant traces
authorAndrey Shvetsov <andrey.shvetsov@k2l.de>
Tue, 20 Jun 2017 15:11:48 +0000 (17:11 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 Jun 2017 16:32:46 +0000 (00:32 +0800)
This removes redundant netdev_info/pr_info.

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 a2e37511341a401b532f2925783aa9f7a0daf035..86353836470c9e2813c8c61e97eea86eebfa2c50 100644 (file)
@@ -180,8 +180,6 @@ static int most_nd_open(struct net_device *dev)
 {
        struct net_dev_context *nd = netdev_priv(dev);
 
-       netdev_info(dev, "open net device\n");
-
        BUG_ON(!nd->tx.linked || !nd->rx.linked);
 
        if (most_start_channel(nd->iface, nd->rx.ch_id, &aim)) {
@@ -210,8 +208,6 @@ static int most_nd_stop(struct net_device *dev)
 {
        struct net_dev_context *nd = netdev_priv(dev);
 
-       netdev_info(dev, "stop net device\n");
-
        netif_stop_queue(dev);
        if (nd->iface->request_netinfo)
                nd->iface->request_netinfo(nd->iface, nd->tx.ch_id, NULL);
@@ -463,14 +459,12 @@ static struct most_aim aim = {
 
 static int __init most_net_init(void)
 {
-       pr_info("most_net_init()\n");
        spin_lock_init(&list_lock);
        return most_register_aim(&aim);
 }
 
 static void __exit most_net_exit(void)
 {
-       pr_info("most_net_exit()\n");
        most_deregister_aim(&aim);
 }