Files
android_kernel_xiaomi_sm8450/drivers/net/wireless/rtlwifi/rtl8192de
Colin Ian King 59b23ebd7f 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>
2015-01-23 19:30:45 +02:00
..
2012-01-24 14:08:38 -05:00
2012-01-24 14:08:38 -05:00
2014-03-06 14:29:56 -05:00
2012-01-24 14:08:38 -05:00
2012-01-24 14:08:38 -05:00
2012-01-24 14:08:38 -05:00