aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorBen Hutchings <bhutchings@solarflare.com>2010-05-18 02:56:32 -0400
committerDavid S. Miller <davem@davemloft.net>2010-05-24 02:21:13 -0400
commita4ed89cb92f93d406ac45fe5507228a2475e32ba (patch)
treeb4effecbd79311832676c756d3acedeb84ba931a /include/linux
parent7f267de41fde594500cbbccb1b29acb4475f2da2 (diff)
net: Fix definition of netif_vdbg() when VERBOSE_DEBUG is not defined
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/netdevice.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 256419583d9..40291f37502 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -2334,7 +2334,7 @@ do { \
2334#define netif_vdbg(priv, type, dev, format, args...) \ 2334#define netif_vdbg(priv, type, dev, format, args...) \
2335({ \ 2335({ \
2336 if (0) \ 2336 if (0) \
2337 netif_printk(KERN_DEBUG, dev, format, ##args); \ 2337 netif_printk(priv, type, KERN_DEBUG, dev, format, ##args); \
2338 0; \ 2338 0; \
2339}) 2339})
2340#endif 2340#endif