summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChaehyun Lim2015-09-20 08:51:23 +0200
committerGreg Kroah-Hartman2015-09-21 04:05:09 +0200
commit1a8ccd85854c24963306c23382afb8a7fd3c046b (patch)
tree305d11dd9f2baee9cac250fe602de2219bec74b5
parentstaging: wilc1000: remove braces for single statement blocks (diff)
downloadkernel-qcow2-linux-1a8ccd85854c24963306c23382afb8a7fd3c046b.tar.gz
kernel-qcow2-linux-1a8ccd85854c24963306c23382afb8a7fd3c046b.tar.xz
kernel-qcow2-linux-1a8ccd85854c24963306c23382afb8a7fd3c046b.zip
staging: wilc1000: replace s32 with int
This patch changes date type of s32Error as int. The return type of WILC_WFI_InitHostInt and WILC_WFI_DeInitHostInt is int so that data type of this variable is changed by int. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/wilc1000/wilc_wfi_cfgoperations.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
index f0bbd903e176..41dd1c3ed88e 100644
--- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
+++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
@@ -3603,7 +3603,7 @@ struct wireless_dev *wilc_create_wiphy(struct net_device *net)
int WILC_WFI_InitHostInt(struct net_device *net)
{
- s32 s32Error = 0;
+ int s32Error = 0;
struct wilc_priv *priv;
@@ -3644,7 +3644,7 @@ int WILC_WFI_InitHostInt(struct net_device *net)
*/
int WILC_WFI_DeInitHostInt(struct net_device *net)
{
- s32 s32Error = 0;
+ int s32Error = 0;
struct wilc_priv *priv;