mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 04:29:11 -04:00
staging: rtl8192u: Use memset to initialize memory, instead of loop.
Replaced memory initialising loop with memset instead. Suggested-by: Andy Shevchenko Signed-off-by: John Whitmore <johnfwhitmore@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
c336f8325f
commit
868e346c1c
@@ -761,8 +761,6 @@ void HTConstructRT2RTAggElement(struct ieee80211_device *ieee, u8 *posRT2RTAgg,
|
||||
*/
|
||||
static u8 HT_PickMCSRate(struct ieee80211_device *ieee, u8 *pOperateMCS)
|
||||
{
|
||||
u8 i;
|
||||
|
||||
if (!pOperateMCS) {
|
||||
IEEE80211_DEBUG(IEEE80211_DL_ERR,
|
||||
"pOperateMCS can't be null in %s\n",
|
||||
@@ -777,8 +775,7 @@ static u8 HT_PickMCSRate(struct ieee80211_device *ieee, u8 *pOperateMCS)
|
||||
//legacy rate routine handled at selectedrate
|
||||
|
||||
//no MCS rate
|
||||
for (i = 0; i <= 15; i++)
|
||||
pOperateMCS[i] = 0;
|
||||
memset(pOperateMCS, 0, 16);
|
||||
break;
|
||||
|
||||
case IEEE_N_24G: //assume CCK rate ok
|
||||
|
||||
Reference in New Issue
Block a user