forked from luck/tmp_suning_uos_patched
wireless: fix build breakage when CONFIG_CFG80211_REG_DEBUG not set
Bad macro definition in "cfg80211: add a regulatory debug print"... Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
4f9b2a7dea
commit
8271195e38
@ -44,12 +44,12 @@
|
|||||||
#include "nl80211.h"
|
#include "nl80211.h"
|
||||||
|
|
||||||
#ifdef CONFIG_CFG80211_REG_DEBUG
|
#ifdef CONFIG_CFG80211_REG_DEBUG
|
||||||
#define REG_DBG_PRINT(args...) \
|
#define REG_DBG_PRINT(format, args...) \
|
||||||
do { \
|
do { \
|
||||||
printk(KERN_DEBUG args); \
|
printk(KERN_DEBUG format , ## args); \
|
||||||
} while (0)
|
} while (0)
|
||||||
#else
|
#else
|
||||||
#define REG_DBG_PRINT(args)
|
#define REG_DBG_PRINT(args...)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Receipt of information from last regulatory request */
|
/* Receipt of information from last regulatory request */
|
||||||
|
Loading…
Reference in New Issue
Block a user