summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ti
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2015-01-13 14:07:34 +0000
committerKalle Valo <kvalo@codeaurora.org>2015-01-23 19:30:45 +0200
commit59b23ebd7fd0af3facd174e96ee4dbc1494fa215 (patch)
tree9677ec55a708b344cab994b97cffb55a8fc7a5f7 /drivers/net/wireless/ti
parent3a939a671225909c19b09bfcb6e4761109e913d9 (diff)
downloadop-kernel-dev-59b23ebd7fd0af3facd174e96ee4dbc1494fa215.zip
op-kernel-dev-59b23ebd7fd0af3facd174e96ee4dbc1494fa215.tar.gz
rtlwifi/rtl8192de: remove redundant else if check
The else if check condition checks for the opposite of the if check, hence the else if check is redundant and can be replaced with a simple else: if (rtlpriv->rtlhal.macphymode == SINGLEMAC_SINGLEPHY) { .. } else if (rtlpriv->rtlhal.macphymode != SINGLEMAC_SINGLEPHY) { .. } replaced with: if (rtlpriv->rtlhal.macphymode == SINGLEMAC_SINGLEPHY) { .. } else { .. } Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/ti')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud