Skip to content

Commit

Permalink
suppress spurious messages
Browse files Browse the repository at this point in the history
  • Loading branch information
profpoop authored and popcornmix committed Jun 13, 2016
1 parent b976e4e commit 759adf6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/net/wireless/realtek/rtl8192cu/include/rtw_debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -313,15 +313,15 @@ extern u32 GlobalDebugLevel;
#if defined (_dbgdump)
#undef DBG_871X
// #define DBG_871X _dbgdump
#define DBG_871X(...) LOG_LEVEL(_drv_emerg_ , __VA_ARGS__)
#define DBG_871X(...) LOG_LEVEL(_drv_debug_ , __VA_ARGS__)

#undef MSG_8192C
// #define MSG_8192C _dbgdump
#define MSG_8192C(...) LOG_LEVEL(_drv_emerg_ , __VA_ARGS__)
#define MSG_8192C(...) LOG_LEVEL(_drv_info_ , __VA_ARGS__)

#undef DBG_8192C
// #define DBG_8192C _dbgdump
#define DBG_8192C(...) LOG_LEVEL(_drv_emerg_ , __VA_ARGS__)
#define DBG_8192C(...) LOG_LEVEL(_drv_debug_ , __VA_ARGS__)


#undef WRN_8192C
Expand Down

0 comments on commit 759adf6

Please sign in to comment.