Staging: rtl8723bs: remove named enums in osdep_service.h
authorMarco Cesati <marcocesati@gmail.com>
Wed, 24 Mar 2021 12:44:33 +0000 (13:44 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 26 Mar 2021 14:03:01 +0000 (15:03 +0100)
Remove the following unnecessary enum definitions in
include/osdep_service.h:

enum mstat_f
enum mstat_status

Signed-off-by: Marco Cesati <marcocesati@gmail.com>
Link: https://lore.kernel.org/r/20210324124456.25221-11-marcocesati@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/include/osdep_service.h

index c4d29d65187f930f45b02a0a71b6c912e87a9c46..fd8830a517074745f825e8ac191159f26c644301 100644 (file)
 
 extern int RTW_STATUS_CODE(int error_code);
 
-/* flags used for rtw_mstat_update() */
-enum mstat_f {
-       /* type: 0x00ff */
-       MSTAT_TYPE_VIR = 0x00,
-       MSTAT_TYPE_PHY = 0x01,
-       MSTAT_TYPE_SKB = 0x02,
-       MSTAT_TYPE_USB = 0x03,
-       MSTAT_TYPE_MAX = 0x04,
-
-       /* func: 0xff00 */
-       MSTAT_FUNC_UNSPECIFIED = 0x00<<8,
-       MSTAT_FUNC_IO = 0x01<<8,
-       MSTAT_FUNC_TX_IO = 0x02<<8,
-       MSTAT_FUNC_RX_IO = 0x03<<8,
-       MSTAT_FUNC_TX = 0x04<<8,
-       MSTAT_FUNC_RX = 0x05<<8,
-       MSTAT_FUNC_MAX = 0x06<<8,
-};
-
 #define mstat_tf_idx(flags) ((flags)&0xff)
 #define mstat_ff_idx(flags) (((flags)&0xff00) >> 8)
 
-enum mstat_status {
-       MSTAT_ALLOC_SUCCESS = 0,
-       MSTAT_ALLOC_FAIL,
-       MSTAT_FREE
-};
-
 #define rtw_mstat_update(flag, status, sz) do {} while (0)
 #define rtw_mstat_dump(sel) do {} while (0)
 void *_rtw_zmalloc(u32 sz);