Commit a4ed89cb authored by Ben Hutchings's avatar Ben Hutchings Committed by David S. Miller

net: Fix definition of netif_vdbg() when VERBOSE_DEBUG is not defined

Signed-off-by: default avatarBen Hutchings <bhutchings@solarflare.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7f267de4
...@@ -2334,7 +2334,7 @@ do { \ ...@@ -2334,7 +2334,7 @@ do { \
#define netif_vdbg(priv, type, dev, format, args...) \ #define netif_vdbg(priv, type, dev, format, args...) \
({ \ ({ \
if (0) \ if (0) \
netif_printk(KERN_DEBUG, dev, format, ##args); \ netif_printk(priv, type, KERN_DEBUG, dev, format, ##args); \
0; \ 0; \
}) })
#endif #endif
......
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