mwifiex: fix coding style issue in mwifiex_deauthenticate

Documentation/CodingStyle says
"Do not unnecessarily use braces where a single statement will do."

Use "switch/case", instead of "if/else_if/else", so that more cases
can be added later.

Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: Avinash Patil <patila@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Bing Zhao 2012-05-01 19:53:51 -07:00 committed by John W. Linville
parent 2a4ffa4c89
commit 99e126fdc0
1 changed files with 12 additions and 10 deletions

View File

@ -1377,19 +1377,21 @@ static int mwifiex_deauthenticate_infra(struct mwifiex_private *priv, u8 *mac)
*/ */
int mwifiex_deauthenticate(struct mwifiex_private *priv, u8 *mac) int mwifiex_deauthenticate(struct mwifiex_private *priv, u8 *mac)
{ {
int ret = 0; if (!priv->media_connected)
return 0;
if (priv->media_connected) { switch (priv->bss_mode) {
if (priv->bss_mode == NL80211_IFTYPE_STATION) { case NL80211_IFTYPE_STATION:
ret = mwifiex_deauthenticate_infra(priv, mac); return mwifiex_deauthenticate_infra(priv, mac);
} else if (priv->bss_mode == NL80211_IFTYPE_ADHOC) { case NL80211_IFTYPE_ADHOC:
ret = mwifiex_send_cmd_sync(priv, return mwifiex_send_cmd_sync(priv,
HostCmd_CMD_802_11_AD_HOC_STOP, HostCmd_CMD_802_11_AD_HOC_STOP,
HostCmd_ACT_GEN_SET, 0, NULL); HostCmd_ACT_GEN_SET, 0, NULL);
} default:
break;
} }
return ret; return 0;
} }
EXPORT_SYMBOL_GPL(mwifiex_deauthenticate); EXPORT_SYMBOL_GPL(mwifiex_deauthenticate);