Commit dd739ea5 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: set_channel: rename s32Error

This patch replaces s32Error with result to avoid camelcase.
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7584019e
...@@ -663,7 +663,7 @@ static int set_channel(struct wiphy *wiphy, ...@@ -663,7 +663,7 @@ static int set_channel(struct wiphy *wiphy,
{ {
u32 channelnum = 0; u32 channelnum = 0;
struct wilc_priv *priv; struct wilc_priv *priv;
int s32Error = 0; int result = 0;
priv = wiphy_priv(wiphy); priv = wiphy_priv(wiphy);
...@@ -671,12 +671,12 @@ static int set_channel(struct wiphy *wiphy, ...@@ -671,12 +671,12 @@ static int set_channel(struct wiphy *wiphy,
PRINT_D(CFG80211_DBG, "Setting channel %d with frequency %d\n", channelnum, chandef->chan->center_freq); PRINT_D(CFG80211_DBG, "Setting channel %d with frequency %d\n", channelnum, chandef->chan->center_freq);
u8CurrChannel = channelnum; u8CurrChannel = channelnum;
s32Error = host_int_set_mac_chnl_num(priv->hWILCWFIDrv, channelnum); result = host_int_set_mac_chnl_num(priv->hWILCWFIDrv, channelnum);
if (s32Error != 0) if (result != 0)
PRINT_ER("Error in setting channel %d\n", channelnum); PRINT_ER("Error in setting channel %d\n", channelnum);
return s32Error; return result;
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment