summaryrefslogtreecommitdiffstats
path: root/drivers/bcma/main.c
diff options
context:
space:
mode:
authorColin Ian King2015-01-13 15:07:34 +0100
committerKalle Valo2015-01-23 18:30:45 +0100
commit59b23ebd7fd0af3facd174e96ee4dbc1494fa215 (patch)
tree9677ec55a708b344cab994b97cffb55a8fc7a5f7 /drivers/bcma/main.c
parentath9k_htc: Add a module parameter to disable blink (diff)
downloadkernel-qcow2-linux-59b23ebd7fd0af3facd174e96ee4dbc1494fa215.tar.gz
kernel-qcow2-linux-59b23ebd7fd0af3facd174e96ee4dbc1494fa215.tar.xz
kernel-qcow2-linux-59b23ebd7fd0af3facd174e96ee4dbc1494fa215.zip
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/bcma/main.c')
0 files changed, 0 insertions, 0 deletions