Commit 360f8987 authored by Armin Wolf's avatar Armin Wolf Committed by David S. Miller

lib8390: Use netif_msg_init to initialize msg_enable bits

Use netif_msg_init() to process param settings
and use only the proper initialized value of
ei_local->msg_level for later processing;
Signed-off-by: default avatarArmin Wolf <W_Armin@gmx.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7a333af6
...@@ -113,8 +113,10 @@ static void do_set_multicast_list(struct net_device *dev); ...@@ -113,8 +113,10 @@ static void do_set_multicast_list(struct net_device *dev);
static void __NS8390_init(struct net_device *dev, int startp); static void __NS8390_init(struct net_device *dev, int startp);
static unsigned version_printed; static unsigned version_printed;
static u32 msg_enable; static int msg_enable;
module_param(msg_enable, uint, 0444); static const int default_msg_level = (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_RX_ERR |
NETIF_MSG_TX_ERR);
module_param(msg_enable, int, 0444);
MODULE_PARM_DESC(msg_enable, "Debug message level (see linux/netdevice.h for bitmap)"); MODULE_PARM_DESC(msg_enable, "Debug message level (see linux/netdevice.h for bitmap)");
/* /*
...@@ -974,14 +976,14 @@ static void ethdev_setup(struct net_device *dev) ...@@ -974,14 +976,14 @@ static void ethdev_setup(struct net_device *dev)
{ {
struct ei_device *ei_local = netdev_priv(dev); struct ei_device *ei_local = netdev_priv(dev);
if ((msg_enable & NETIF_MSG_DRV) && (version_printed++ == 0))
pr_info("%s", version);
ether_setup(dev); ether_setup(dev);
spin_lock_init(&ei_local->page_lock); spin_lock_init(&ei_local->page_lock);
ei_local->msg_enable = msg_enable; ei_local->msg_enable = netif_msg_init(msg_enable, default_msg_level);
if (netif_msg_drv(ei_local) && (version_printed++ == 0))
pr_info("%s", version);
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment