diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2010-05-18 02:56:32 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-24 02:21:13 -0400 |
commit | a4ed89cb92f93d406ac45fe5507228a2475e32ba (patch) | |
tree | b4effecbd79311832676c756d3acedeb84ba931a /include | |
parent | 7f267de41fde594500cbbccb1b29acb4475f2da2 (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')
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 256419583d9d..40291f375024 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 |