staging: r8188eu: remove ASSERT ifndef and macro definition
authorPhillip Potter <phil@philpotter.co.uk>
Sat, 31 Jul 2021 00:39:28 +0000 (01:39 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 31 Jul 2021 07:21:42 +0000 (09:21 +0200)
Remove ASSERT ifndef and macro definition from include/odm_debug.h, as
these are unused and therefore superfluous.

Signed-off-by: Phillip Potter <phil@philpotter.co.uk>
Link: https://lore.kernel.org/r/20210731003937.68615-6-phil@philpotter.co.uk
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/r8188eu/include/odm_debug.h

index ef0d6b8..c70fe73 100644 (file)
 #define RT_PRINTK(fmt, args...)                                \
        DbgPrint( "%s(): " fmt, __func__, ## args);
 
-#ifndef ASSERT
-       #define ASSERT(expr)
-#endif
-
 #define ODM_RT_TRACE(pDM_Odm, comp, level, fmt)                                \
        if (((comp) & pDM_Odm->DebugComponents) &&                      \
            (level <= pDM_Odm->DebugLevel)) {                           \