summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Kim <leo.kim@atmel.com>2015-10-12 07:56:02 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-10-13 03:58:01 (GMT)
commit7696edf4d57f7a3d8a45ccf01f201b980c077d08 (patch)
tree726f15c270b597b9ca62c4e1d4fe4f0603c8efce
parented3f0379a272d7ef4e787f42575eac642b5b020e (diff)
downloadlinux-7696edf4d57f7a3d8a45ccf01f201b980c077d08.tar.xz
staging: wilc1000: remove typedef from tenuScanConnTimer
This patch removes typedef from the enum tenuScanConnTimer and renames it to scan_conn_timer. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Tony Cho <tony.cho@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/wilc1000/host_interface.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 54b2a61..6826298 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -436,11 +436,11 @@ struct join_bss_param {
u8 au8StartTime[4];
};
-typedef enum {
+enum scan_conn_timer {
SCAN_TIMER = 0,
CONNECT_TIMER = 1,
SCAN_CONNECT_TIMER_FORCE_32BIT = 0xFFFFFFFF
-} tenuScanConnTimer;
+};
/*****************************************************************************/
/* */
@@ -4872,7 +4872,7 @@ s32 host_int_set_join_req(struct host_if_drv *hWFIDrv, u8 *pu8bssid,
s32 s32Error = 0;
struct host_if_drv *pstrWFIDrv = (struct host_if_drv *)hWFIDrv;
struct host_if_msg msg;
- tenuScanConnTimer enuScanConnTimer;
+ enum scan_conn_timer enuScanConnTimer;
if (pstrWFIDrv == NULL || pfConnectResult == NULL) {
s32Error = -EFAULT;
@@ -5530,7 +5530,7 @@ s32 host_int_scan(struct host_if_drv *hWFIDrv, u8 u8ScanSource,
s32 s32Error = 0;
struct host_if_drv *pstrWFIDrv = (struct host_if_drv *)hWFIDrv;
struct host_if_msg msg;
- tenuScanConnTimer enuScanConnTimer;
+ enum scan_conn_timer enuScanConnTimer;
if (pstrWFIDrv == NULL || ScanResult == NULL) {
PRINT_ER("pstrWFIDrv or ScanResult = NULL\n");