From: Jes Sorensen Date: Mon, 9 Jun 2014 13:16:48 +0000 (+0200) Subject: staging: rtl8723au: Don't prepend debug console messages with 'ERROR ' X-Git-Tag: firefly_0821_release~176^2~3491^2~2047 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fa862a7f799fcf60f9e0aed9c04fbfdeae518668;p=firefly-linux-kernel-4.4.55.git staging: rtl8723au: Don't prepend debug console messages with 'ERROR ' Signed-off-by: Jes Sorensen Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723au/include/rtw_debug.h b/drivers/staging/rtl8723au/include/rtw_debug.h index a69d6e215b8b..b6b01732a725 100644 --- a/drivers/staging/rtl8723au/include/rtw_debug.h +++ b/drivers/staging/rtl8723au/include/rtw_debug.h @@ -146,7 +146,7 @@ #define DBG_8723A_LEVEL(_level, fmt, arg...) \ do { \ if (_level <= GlobalDebugLevel23A) \ - pr_info(DRIVER_PREFIX"ERROR " fmt, ##arg);\ + pr_info(DRIVER_PREFIX fmt, ##arg);\ } while (0) #define DBG_8723A(...) \