Commit fa862a7f authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman

staging: rtl8723au: Don't prepend debug console messages with 'ERROR '

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2febc867
...@@ -146,7 +146,7 @@ ...@@ -146,7 +146,7 @@
#define DBG_8723A_LEVEL(_level, fmt, arg...) \ #define DBG_8723A_LEVEL(_level, fmt, arg...) \
do { \ do { \
if (_level <= GlobalDebugLevel23A) \ if (_level <= GlobalDebugLevel23A) \
pr_info(DRIVER_PREFIX"ERROR " fmt, ##arg);\ pr_info(DRIVER_PREFIX fmt, ##arg);\
} while (0) } while (0)
#define DBG_8723A(...) \ #define DBG_8723A(...) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment