From: Colin Ian King Date: Tue, 13 Jan 2015 14:07:34 +0000 (+0000) Subject: rtlwifi/rtl8192de: remove redundant else if check X-Git-Tag: fixes-v4.0-rc1~150^2~130^2~10 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59b23ebd7fd0af3facd174e96ee4dbc1494fa215;p=pandora-kernel.git 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 Acked-by: Larry Finger Signed-off-by: Kalle Valo --- Reading git-diff-tree failed