[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20180313100752.11593-1-hariprasath.elango@gmail.com>
Date: Tue, 13 Mar 2018 15:37:51 +0530
From: hariprasath.elango@...il.com
To: aditya.shankar@...rochip.com, ganesh.krishna@...rochip.com
Cc: hariprasath.elango@...il.com,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
linux-wireless@...r.kernel.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] staging: wilc1000: replace switch statement by simple if condition
From: HariPrasath Elango <hariprasath.elango@...il.com>
In this case,there is only a single switch case statement.So replacing
by a simple if condition.
Signed-off-by: HariPrasath Elango <hariprasath.elango@...il.com>
---
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
index c901108..17bd762 100644
--- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
+++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
@@ -772,14 +772,8 @@ static int connect(struct wiphy *wiphy, struct net_device *dev,
}
if (sme->crypto.n_akm_suites) {
- switch (sme->crypto.akm_suites[0]) {
- case WLAN_AKM_SUITE_8021X:
+ if (sme->crypto.akm_suites[0] == WLAN_AKM_SUITE_8021X)
auth_type = IEEE8021;
- break;
-
- default:
- break;
- }
}
curr_channel = pstrNetworkInfo->ch;
--
2.10.0.GIT
Powered by blists - more mailing lists