mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-06-23 16:44:20 +00:00
rtl8188eu: Change "while(" to "while ("
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
6ead3e77dc
commit
8e22f0d2e8
37 changed files with 151 additions and 151 deletions
|
@ -354,7 +354,7 @@ void rtw_secmicappend(struct mic_data *pmicdata, u8 * src, u32 nbytes )
|
|||
{
|
||||
;
|
||||
/* This is simple */
|
||||
while( nbytes > 0 )
|
||||
while ( nbytes > 0 )
|
||||
{
|
||||
rtw_secmicappendbyte(pmicdata, *src++ );
|
||||
nbytes--;
|
||||
|
@ -371,7 +371,7 @@ void rtw_secgetmic(struct mic_data *pmicdata, u8 * dst )
|
|||
rtw_secmicappendbyte(pmicdata, 0 );
|
||||
rtw_secmicappendbyte(pmicdata, 0 );
|
||||
/* and then zeroes until the length is a multiple of 4 */
|
||||
while( pmicdata->nBytesInM != 0 )
|
||||
while ( pmicdata->nBytesInM != 0 )
|
||||
rtw_secmicappendbyte(pmicdata, 0 );
|
||||
/* The appendByte function has already computed the result. */
|
||||
secmicputuint32( dst, pmicdata->L );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue