rtl8188eu: Change "while(" to "while ("

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2015-08-15 13:04:12 -05:00
parent 6ead3e77dc
commit 8e22f0d2e8
37 changed files with 151 additions and 151 deletions

View file

@ -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 );