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>
        u8 au8StartTime[4];
 };
 
-typedef enum {
+enum scan_conn_timer {
        SCAN_TIMER = 0,
        CONNECT_TIMER   = 1,
        SCAN_CONNECT_TIMER_FORCE_32BIT = 0xFFFFFFFF
-} tenuScanConnTimer;
+};
 
 /*****************************************************************************/
 /*                                                                                                                                                      */
        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;
        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");