]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
net: Fix definition of netif_vdbg() when VERBOSE_DEBUG is defined
authorBen Hutchings <bhutchings@solarflare.com>
Fri, 2 Jul 2010 07:08:44 +0000 (07:08 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 6 Jul 2010 03:08:05 +0000 (20:08 -0700)
netif_vdbg() was originally defined as entirely equivalent to
netdev_vdbg(), but I assume that it was intended to take the same
parameters as netif_dbg() etc.  (Currently it is only used by the
sfc driver, in which I worked on that assumption.)

In commit a4ed89c I changed the definition used when VERBOSE_DEBUG is
not defined, but I failed to notice that the definition used when
VERBOSE_DEBUG is defined was also not as I expected.  Change that to
match netif_dbg() as well.

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netdevice.h

index 5e6188d9f017aa385717f490f4e1c6b896777d36..b21e4054c12cb250f621b3baa9e1774d354bebcb 100644 (file)
@@ -2332,7 +2332,7 @@ do {                                                              \
 #endif
 
 #if defined(VERBOSE_DEBUG)
-#define netif_vdbg     netdev_dbg
+#define netif_vdbg     netif_dbg
 #else
 #define netif_vdbg(priv, type, dev, format, args...)           \
 ({                                                             \