diff options
author | Andrey Shvetsov <andrey.shvetsov@k2l.de> | 2017-06-20 17:11:48 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-06-24 00:32:46 +0800 |
commit | 3c1746edd12d4e3279b47a9fb8dc0eedc77d679d (patch) | |
tree | 90589ee855b0e92d8443a5fa2bc77cf902cf35cd /drivers/staging/most | |
parent | d4f3d4b150cee6aad5d11d121189cb7e68b1bff1 (diff) |
staging: most: net: remove redundant traces
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>
Diffstat (limited to 'drivers/staging/most')
-rw-r--r-- | drivers/staging/most/aim-network/networking.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/staging/most/aim-network/networking.c b/drivers/staging/most/aim-network/networking.c index a2e37511341a..86353836470c 100644 --- a/drivers/staging/most/aim-network/networking.c +++ b/drivers/staging/most/aim-network/networking.c @@ -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); } |