[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <200901162319.44255.david-b@pacbell.net>
Date: Fri, 16 Jan 2009 23:19:44 -0800
From: David Brownell <david-b@...bell.net>
To: netdev@...r.kernel.org
Cc: Steve Glendinning <steve.glendinning@...c.com>,
Ian Saturley <ian.saturley@...c.com>,
Jeff Garzik <jeff@...zik.org>
Subject: [patch 2.6.29-rc] usbnet: allow type check of devdbg arguments in non-debug build
From: Steve Glendinning <steve.glendinning@...c.com>
Subject: usbnet: allow type check of devdbg arguments in non-debug build
Improve usbnet's devdbg to always type-check diagnostic arguments,
like dev_dbg (device.h). This makes no change to the resulting size of
usbnet modules.
Signed-off-by: Steve Glendinning <steve.glendinning@...c.com>
Signed-off-by: David Brownell <dbrownell@...rs.sourceforge.net>
---
[ refreshed against 2.6.29-rc1 GIT ]
include/linux/usb/usbnet.h | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
--- a/include/linux/usb/usbnet.h
+++ b/include/linux/usb/usbnet.h
@@ -197,7 +197,9 @@ extern int usbnet_nway_reset(struct net_
#define devdbg(usbnet, fmt, arg...) \
printk(KERN_DEBUG "%s: " fmt "\n" , (usbnet)->net->name , ## arg)
#else
-#define devdbg(usbnet, fmt, arg...) do {} while(0)
+#define devdbg(usbnet, fmt, arg...) \
+ ({ if (0) printk(KERN_DEBUG "%s: " fmt "\n" , (usbnet)->net->name , \
+ ## arg); 0; })
#endif
#define deverr(usbnet, fmt, arg...) \
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists