summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Cesati <marcocesati@gmail.com>2021-03-24 15:44:40 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-03-26 17:03:01 +0300
commit9c2c652f06c405165590da1c104c9858557859a1 (patch)
treed749adc83f89fe6714f3bf4a9f86913f17594289
parent9666bfa5684cf078c6489fba5743c373ad87e8a9 (diff)
downloadlinux-9c2c652f06c405165590da1c104c9858557859a1.tar.xz
Staging: rtl8723bs: remove named enums in rtl8723b_hal.h
Remove the following unnecessary enum names in include/rtl8723b_hal.h: enum c2h_evt enum package_type_e Signed-off-by: Marco Cesati <marcocesati@gmail.com> Link: https://lore.kernel.org/r/20210324124456.25221-18-marcocesati@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/rtl8723bs/include/rtl8723b_hal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8723bs/include/rtl8723b_hal.h b/drivers/staging/rtl8723bs/include/rtl8723b_hal.h
index 9b043251ff30..c1d7249e3e9d 100644
--- a/drivers/staging/rtl8723bs/include/rtl8723b_hal.h
+++ b/drivers/staging/rtl8723bs/include/rtl8723b_hal.h
@@ -152,7 +152,7 @@ struct rt_firmware_hdr {
/* Description: Determine the types of C2H events that are the same in driver
* and FW; First constructed by tynli. 2009.10.09.
*/
-enum c2h_evt {
+enum {
C2H_DBG = 0,
C2H_TSF = 1,
C2H_AP_RPT_RSP = 2,
@@ -174,7 +174,7 @@ struct c2h_evt_hdr_t {
u8 CmdSeq;
} __attribute__((__packed__));
-enum package_type_e { /* tag_Package_Definition */
+enum { /* tag_Package_Definition */
PACKAGE_DEFAULT,
PACKAGE_QFN68,
PACKAGE_TFBGA90,