rtlwifi: rtl8192ee: fix semicolon.cocci warnings
drivers/net/wireless/rtlwifi/rtl8192ee/phy.c:856:2-3: Unneeded semicolon drivers/net/wireless/rtlwifi/rtl8192ee/phy.c:492:3-4: Unneeded semicolon drivers/net/wireless/rtlwifi/rtl8192ee/phy.c:452:3-4: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Родитель
14250640cd
Коммит
12ff7288bf
|
@ -449,7 +449,7 @@ static void _rtl92ee_phy_set_txpower_by_rate_base(struct ieee80211_hw *hw,
|
||||||
"Invalid RateSection %d in 2.4G,Rf %d,%dTx\n",
|
"Invalid RateSection %d in 2.4G,Rf %d,%dTx\n",
|
||||||
rate_section, path, txnum);
|
rate_section, path, txnum);
|
||||||
break;
|
break;
|
||||||
};
|
}
|
||||||
} else {
|
} else {
|
||||||
RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
|
RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
|
||||||
"Invalid Band %d\n", band);
|
"Invalid Band %d\n", band);
|
||||||
|
@ -489,7 +489,7 @@ static u8 _rtl92ee_phy_get_txpower_by_rate_base(struct ieee80211_hw *hw,
|
||||||
"Invalid RateSection %d in 2.4G,Rf %d,%dTx\n",
|
"Invalid RateSection %d in 2.4G,Rf %d,%dTx\n",
|
||||||
rate_section, path, txnum);
|
rate_section, path, txnum);
|
||||||
break;
|
break;
|
||||||
};
|
}
|
||||||
} else {
|
} else {
|
||||||
RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
|
RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
|
||||||
"Invalid Band %d()\n", band);
|
"Invalid Band %d()\n", band);
|
||||||
|
@ -853,7 +853,7 @@ static u8 _rtl92ee_get_rate_section_index(u32 regaddr)
|
||||||
else if (regaddr >= 0xE20 && regaddr <= 0xE4C)
|
else if (regaddr >= 0xE20 && regaddr <= 0xE4C)
|
||||||
index = (u8)((regaddr - 0xE20) / 4);
|
index = (u8)((regaddr - 0xE20) / 4);
|
||||||
break;
|
break;
|
||||||
};
|
}
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче