aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/node.c
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2015-01-13 14:07:34 +0000
committerKalle Valo <[email protected]>2015-01-23 17:30:45 +0000
commit59b23ebd7fd0af3facd174e96ee4dbc1494fa215 (patch)
tree9677ec55a708b344cab994b97cffb55a8fc7a5f7 /net/tipc/node.c
parentath9k_htc: Add a module parameter to disable blink (diff)
downloadkernel-59b23ebd7fd0af3facd174e96ee4dbc1494fa215.tar.gz
kernel-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 <[email protected]> Acked-by: Larry Finger <[email protected]> Signed-off-by: Kalle Valo <[email protected]>
Diffstat (limited to 'net/tipc/node.c')
0 files changed, 0 insertions, 0 deletions