staging: wilc1000: removed enum typedef CHIP_PS_STATE_T
authorAjay Singh <ajay.kathat@microchip.com>
Thu, 11 Jan 2018 14:12:17 +0000 (19:42 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 Jan 2018 14:52:21 +0000 (15:52 +0100)
This patch removes enum typedef CHIP_PS_STATE_T and introduce
enum chip_ps_states to use instead of typedef.

checkpatch.pl not to add new typedef warning is fixed with this patch.

Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wlan.c
drivers/staging/wilc1000/wilc_wlan_if.h

index 999fd09ad1cd31663c413b3e39d0b1babc072cf4..13fd2c4b4cb8919b4afb3212800afb0c204671e5 100644 (file)
@@ -5,7 +5,7 @@
 #include "wilc_wfi_netdevice.h"
 #include "wilc_wlan_cfg.h"
 
-static CHIP_PS_STATE_T chip_ps_state = CHIP_WAKEDUP;
+static enum chip_ps_states chip_ps_state = CHIP_WAKEDUP;
 
 static inline void acquire_bus(struct wilc *wilc, BUS_ACQUIRE_T acquire)
 {
index db2dab421cc4e3aeb995427af0ec9e93f3900479..ab12090c1689bc63421c52ee0398fdc803497124 100644 (file)
@@ -137,11 +137,11 @@ typedef enum {
        MAX_PSPOLL_PS           = 4
 } USER_PS_MODE_T;
 
-typedef enum {
+enum chip_ps_states {
        CHIP_WAKEDUP            = 0,
        CHIP_SLEEPING_AUTO      = 1,
        CHIP_SLEEPING_MANUAL    = 2
-} CHIP_PS_STATE_T;
+};
 
 typedef enum {
        ACQUIRE_ONLY            = 0,