staging: rtl8188eu: remove MSG_88E macro from include/rtw_debug.h
authorPhillip Potter <phil@philpotter.co.uk>
Wed, 23 Jun 2021 23:49:02 +0000 (00:49 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 24 Jun 2021 12:43:20 +0000 (14:43 +0200)
Remove definition of MSG_88E macro from include/rtw_debug.h, as it
no longer has any callers and does not follow kernel coding conventions.
Removing this macro leaves only RT_TRACE and associated definitions.

Signed-off-by: Phillip Potter <phil@philpotter.co.uk>
Link: https://lore.kernel.org/r/20210623234902.7411-10-phil@philpotter.co.uk
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/include/rtw_debug.h

index ac123dd..72a18ec 100644 (file)
 
 extern u32 GlobalDebugLevel;
 
-#define MSG_88E(...)                                                   \
-       do {                                                            \
-               if (_drv_err_ <= GlobalDebugLevel)                      \
-                       pr_info(DRIVER_PREFIX __VA_ARGS__);                     \
-       } while (0)
-
 #define RT_TRACE(_comp, _level, fmt)                                   \
        do {                                                            \
                if (_level <= GlobalDebugLevel) {                       \