diff options
author | Ajay Singh <ajay.kathat@microchip.com> | 2018-01-11 15:12:18 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-01-15 15:52:21 +0100 |
commit | 13ae5a7bb173a327769848b1c7f5b2a41d407d3e (patch) | |
tree | 8c844abfa706dc00d91ae7f6aa97b736e8a63ecb /drivers | |
parent | staging: wilc1000: removed enum typedef CHIP_PS_STATE_T (diff) | |
download | linux-13ae5a7bb173a327769848b1c7f5b2a41d407d3e.tar.xz linux-13ae5a7bb173a327769848b1c7f5b2a41d407d3e.zip |
staging: wilc1000: removed enum typedef BUS_ACQUIRE_T
This patch removes enum typedef BUS_ACQUIRE_T and define
enum bus_acquire 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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/wilc1000/wilc_wlan.c | 2 | ||||
-rw-r--r-- | drivers/staging/wilc1000/wilc_wlan_if.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/wilc1000/wilc_wlan.c b/drivers/staging/wilc1000/wilc_wlan.c index 13fd2c4b4cb8..4d070c472e9b 100644 --- a/drivers/staging/wilc1000/wilc_wlan.c +++ b/drivers/staging/wilc1000/wilc_wlan.c @@ -7,7 +7,7 @@ static enum chip_ps_states chip_ps_state = CHIP_WAKEDUP; -static inline void acquire_bus(struct wilc *wilc, BUS_ACQUIRE_T acquire) +static inline void acquire_bus(struct wilc *wilc, enum bus_acquire acquire) { mutex_lock(&wilc->hif_cs); if (acquire == ACQUIRE_AND_WAKEUP) diff --git a/drivers/staging/wilc1000/wilc_wlan_if.h b/drivers/staging/wilc1000/wilc_wlan_if.h index ab12090c1689..2bc500d6d4a1 100644 --- a/drivers/staging/wilc1000/wilc_wlan_if.h +++ b/drivers/staging/wilc1000/wilc_wlan_if.h @@ -143,10 +143,10 @@ enum chip_ps_states { CHIP_SLEEPING_MANUAL = 2 }; -typedef enum { +enum bus_acquire { ACQUIRE_ONLY = 0, ACQUIRE_AND_WAKEUP = 1, -} BUS_ACQUIRE_T; +}; typedef enum { RELEASE_ONLY = 0, |