wireless: fix build breakage when CONFIG_CFG80211_REG_DEBUG not set
authorJohn W. Linville <linville@tuxdriver.com>
Tue, 5 Jan 2010 22:57:20 +0000 (17:57 -0500)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 5 Jan 2010 22:58:07 +0000 (17:58 -0500)
Bad macro definition in "cfg80211: add a regulatory debug print"...

Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/wireless/reg.c

index 89c3e68..f79d661 100644 (file)
 #include "nl80211.h"
 
 #ifdef CONFIG_CFG80211_REG_DEBUG
-#define REG_DBG_PRINT(args...) \
+#define REG_DBG_PRINT(format, args...) \
        do { \
-               printk(KERN_DEBUG args); \
+               printk(KERN_DEBUG format , ## args); \
        } while (0)
 #else
-#define REG_DBG_PRINT(args)
+#define REG_DBG_PRINT(args...)
 #endif
 
 /* Receipt of information from last regulatory request */