staging: ks7010: change if-else condition assignment to use ternary operator
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Thu, 19 Apr 2018 05:07:59 +0000 (07:07 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 23 Apr 2018 12:32:05 +0000 (14:32 +0200)
This commit changes an if-else block used to just assign a
variable to use a ternary operator to do the same improving
readability.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks_wlan_net.c

index 1f2e9f3..6a0ec9c 100644 (file)
@@ -673,10 +673,7 @@ static int ks_wlan_get_rate(struct net_device *dev,
                ks_wlan_update_phy_information(priv);
 
        vwrq->value = ((priv->current_rate) & RATE_MASK) * 500000;
-       if (priv->reg.tx_rate == TX_RATE_FIXED)
-               vwrq->fixed = 1;
-       else
-               vwrq->fixed = 0;
+       vwrq->fixed = (priv->reg.tx_rate == TX_RATE_FIXED) ? 1 : 0;
 
        return 0;
 }