diff options
author | Chaehyun Lim <chaehyun.lim@gmail.com> | 2016-04-04 20:04:44 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-04-28 22:00:52 -0700 |
commit | 4aa3387bc2d56459fdb7da9e47f39d56b46db3a3 (patch) | |
tree | d13f1cc9d851a1264dbaca94383be0e05655806c /drivers/staging/wilc1000 | |
parent | 960efe0f89f90c1742728aeaca2de1ca7e0ce42b (diff) | |
download | linux-stable-4aa3387bc2d56459fdb7da9e47f39d56b46db3a3.tar.gz linux-stable-4aa3387bc2d56459fdb7da9e47f39d56b46db3a3.tar.bz2 linux-stable-4aa3387bc2d56459fdb7da9e47f39d56b46db3a3.zip |
staging: wilc1000: move Handle_ScanDone function declaration
Handle_ScanDone function declaration is moved to front of
host_interface.c file.
Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000')
-rw-r--r-- | drivers/staging/wilc1000/host_interface.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 41a14263f36a..1e3742d74fae 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -263,6 +263,7 @@ static struct wilc_vif *join_req_vif; static void *host_int_ParseJoinBssParam(struct network_info *ptstrNetworkInfo); static int host_int_get_ipaddress(struct wilc_vif *vif, u8 *ip_addr, u8 idx); +static s32 Handle_ScanDone(struct wilc_vif *vif, enum scan_event enuEvent); /* The u8IfIdx starts from 0 to NUM_CONCURRENT_IFC -1, but 0 index used as * special purpose in wilc device, so we add 1 to the index to starts from 1. @@ -730,9 +731,6 @@ unlock: return result; } -static s32 Handle_ScanDone(struct wilc_vif *vif, - enum scan_event enuEvent); - static s32 Handle_Scan(struct wilc_vif *vif, struct scan_attr *pstrHostIFscanAttr) { |