This commit refactors ks_wlan_set_cts_mode function to
handle invalid values first and then assign the good
one changing a bit logic to use a ternary operator.

Signed-off-by: Sergio Paracuellos <sergio.paracuel...@gmail.com>
---
 drivers/staging/ks7010/ks_wlan_net.c | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/drivers/staging/ks7010/ks_wlan_net.c 
b/drivers/staging/ks7010/ks_wlan_net.c
index 89d9fda..676f9fd 100644
--- a/drivers/staging/ks7010/ks_wlan_net.c
+++ b/drivers/staging/ks7010/ks_wlan_net.c
@@ -2027,18 +2027,13 @@ static int ks_wlan_set_cts_mode(struct net_device *dev,
        if (priv->sleep_mode == SLP_SLEEP)
                return -EPERM;
        /* for SLEEP MODE */
-       if (*uwrq == CTS_MODE_FALSE) {  /* 0 */
-               priv->reg.cts_mode = CTS_MODE_FALSE;
-       } else if (*uwrq == CTS_MODE_TRUE) {    /* 1 */
-               if (priv->reg.phy_type == D_11G_ONLY_MODE ||
-                   priv->reg.phy_type == D_11BG_COMPATIBLE_MODE) {
-                       priv->reg.cts_mode = CTS_MODE_TRUE;
-               } else {
-                       priv->reg.cts_mode = CTS_MODE_FALSE;
-               }
-       } else {
+       if (*uwrq != CTS_MODE_FALSE && *uwrq != CTS_MODE_TRUE)
                return -EINVAL;
-       }
+
+       priv->reg.cts_mode = (*uwrq == CTS_MODE_FALSE) ? *uwrq :
+                             (priv->reg.phy_type == D_11G_ONLY_MODE ||
+                              priv->reg.phy_type == D_11BG_COMPATIBLE_MODE) ?
+                              *uwrq : !*uwrq;
 
        priv->need_commit |= SME_MODE_SET;
        return -EINPROGRESS;    /* Call commit handler */
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to