]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
rt2x00: print warning, notice and info as default
authorStanislaw Gruszka <stf_xl@wp.pl>
Thu, 24 Jan 2013 20:59:32 +0000 (21:59 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 30 Jan 2013 20:06:42 +0000 (15:06 -0500)
Some messages provide useful information, but are disabled without
CONFIG_RT2X00_DEBUG=y, so enable them by default

Signed-off-by: Stanislaw Gruszka <stf_xl@wp.pl>
Acked-by: Gertjan van Wingerde <gwingerde@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/rt2x00/rt2x00.h

index 221728090cbd9f97985d0abc220e3fb8f7d58f22..7d21e061dc88f49c8c09ce0bc51a6a9695e26f93 100644 (file)
@@ -88,9 +88,9 @@
 #define ERROR_PROBE(__msg, __args...) \
        DEBUG_PRINTK_PROBE(KERN_ERR, "Error", __msg, ##__args)
 #define WARNING(__dev, __msg, __args...) \
-       DEBUG_PRINTK(__dev, KERN_WARNING, "Warning", __msg, ##__args)
+       DEBUG_PRINTK_MSG(__dev, KERN_WARNING, "Warning", __msg, ##__args)
 #define NOTICE(__dev, __msg, __args...) \
-       DEBUG_PRINTK(__dev, KERN_NOTICE, "Notice", __msg, ##__args)
+       DEBUG_PRINTK_MSG(__dev, KERN_NOTICE, "Notice", __msg, ##__args)
 #define INFO(__dev, __msg, __args...) \
        DEBUG_PRINTK_MSG(__dev, KERN_INFO, "Info", __msg, ##__args)
 #define DEBUG(__dev, __msg, __args...) \