summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAjay Singh <ajay.kathat@microchip.com>2018-01-11 19:42:15 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-01-15 15:52:21 +0100
commit57d6c22aecb8622a2d2b201b2e105f5fdbf91173 (patch)
tree413bb2b8519e44f0ed1c8048a97196257422698e
parent25bab0e1b53fbef5f9d3ec6be0a0bb089e949832 (diff)
downloadlinux-stable-57d6c22aecb8622a2d2b201b2e105f5fdbf91173.tar.gz
linux-stable-57d6c22aecb8622a2d2b201b2e105f5fdbf91173.tar.bz2
linux-stable-57d6c22aecb8622a2d2b201b2e105f5fdbf91173.zip
staging: wilc1000: remove unnecessary typedef enum G_OPERATING_MODE_T
This patch has removed G_OPERATING_MODE_T typedef enum. Now, its used as anonymous-enums for constants. checkpatch.pl warning to avoid new typedef is fixes with this patch. Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/wilc1000/wilc_wlan_if.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/wilc_wlan_if.h b/drivers/staging/wilc1000/wilc_wlan_if.h
index 2baf6c4619b5..222bde249296 100644
--- a/drivers/staging/wilc1000/wilc_wlan_if.h
+++ b/drivers/staging/wilc1000/wilc_wlan_if.h
@@ -107,12 +107,12 @@ typedef enum {
RATE_54MB = 54
} TX_RATE_T;
-typedef enum {
+enum {
B_ONLY_MODE = 0, /* 1, 2 M, otherwise 5, 11 M */
G_ONLY_MODE, /* 6,12,24 otherwise 9,18,36,48,54 */
G_MIXED_11B_1_MODE, /* 1,2,5.5,11 otherwise all on */
G_MIXED_11B_2_MODE, /* 1,2,5,11,6,12,24 otherwise all on */
-} G_OPERATING_MODE_T;
+};
typedef enum {
G_SHORT_PREAMBLE = 0, /* Short Preamble */