staging: wilc1000: remove unused argument of chip_sleep_manually function
authorLeo Kim <leo.kim@atmel.com>
Fri, 6 Nov 2015 02:13:00 +0000 (11:13 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch removes u32SleepTime that is second argument of
chip_sleep_manually function because it is not used in this function.
Remove argument in the function call also.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c
drivers/staging/wilc1000/wilc_wlan.c
drivers/staging/wilc1000/wilc_wlan.h

index 84a2479600900c7102de21e6a5078326cec564e0..7014915e30d1e0a9bd4483867140e4a2a41f2315 100644 (file)
@@ -271,7 +271,6 @@ static struct host_if_drv *join_req_drv;
 
 static void *host_int_ParseJoinBssParam(tstrNetworkInfo *ptstrNetworkInfo);
 
-extern void chip_sleep_manually(u32 u32SleepTime);
 extern int linux_wlan_get_num_conn_ifcs(void);
 
 static int add_handler_in_list(struct host_if_drv *handler)
@@ -2906,7 +2905,7 @@ static int hostIFthread(void *pvArg)
                        PRINT_D(HOSTINF_DBG, "scan completed successfully\n");
 
                        if (!linux_wlan_get_num_conn_ifcs())
-                               chip_sleep_manually(INFINITE_SLEEP_TIME);
+                               chip_sleep_manually();
 
                        Handle_ScanDone(msg.drv, SCAN_EVENT_DONE);
 
index 0c08a9ac38ae7a22194acb9b6e05df900e48ce37..66d5d4267327378bdff9da4bc25e36f3ccf09ca7 100644 (file)
@@ -680,7 +680,7 @@ static inline void chip_wakeup(void)
        chip_ps_state = CHIP_WAKEDUP;
 }
 #endif
-void chip_sleep_manually(u32 u32SleepTime)
+void chip_sleep_manually(void)
 {
        if (chip_ps_state != CHIP_WAKEDUP)
                return;
index 2eb7e207b3abe31b9d7a93dc1cb135d16a8aede6..de2fb7cdd1f4ae59eaca5a04a44b074f321bdaab 100644 (file)
@@ -309,4 +309,5 @@ int wilc_wlan_cfg_get(int start, u32 wid, int commit, u32 drvHandler);
 int wilc_wlan_cfg_get_val(u32 wid, u8 *buffer, u32 buffer_size);
 int wilc_wlan_txq_add_mgmt_pkt(struct net_device *dev, void *priv, u8 *buffer,
                               u32 buffer_size, wilc_tx_complete_func_t func);
+void chip_sleep_manually(void);
 #endif
This page took 0.030383 seconds and 5 git commands to generate.