mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 06:34:11 +08:00
staging: rtl8188eu: use break to exit while loop
The variable bContinual in Efuse_PgPacketRead() is only used to break out of a while loop. Remove the variable and use break instead. Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20191220174413.13913-1-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d7a336d67a
commit
d1e10852aa
@ -402,7 +402,6 @@ static u16 Efuse_GetCurrentSize(struct adapter *pAdapter)
|
||||
int Efuse_PgPacketRead(struct adapter *pAdapter, u8 offset, u8 *data)
|
||||
{
|
||||
u8 ReadState = PG_STATE_HEADER;
|
||||
int bContinual = true;
|
||||
int bDataEmpty = true;
|
||||
u8 efuse_data, word_cnts = 0;
|
||||
u16 efuse_addr = 0;
|
||||
@ -422,7 +421,7 @@ int Efuse_PgPacketRead(struct adapter *pAdapter, u8 offset, u8 *data)
|
||||
/* <Roger_TODO> Efuse has been pre-programmed dummy 5Bytes at the end of Efuse by CP. */
|
||||
/* Skip dummy parts to prevent unexpected data read from Efuse. */
|
||||
/* By pass right now. 2009.02.19. */
|
||||
while (bContinual && AVAILABLE_EFUSE_ADDR(efuse_addr)) {
|
||||
while (AVAILABLE_EFUSE_ADDR(efuse_addr)) {
|
||||
/* Header Read ------------- */
|
||||
if (ReadState & PG_STATE_HEADER) {
|
||||
if (efuse_OneByteRead(pAdapter, efuse_addr, &efuse_data) && (efuse_data != 0xFF)) {
|
||||
@ -464,7 +463,7 @@ int Efuse_PgPacketRead(struct adapter *pAdapter, u8 offset, u8 *data)
|
||||
ReadState = PG_STATE_HEADER;
|
||||
}
|
||||
} else {
|
||||
bContinual = false;
|
||||
break;
|
||||
}
|
||||
} else if (ReadState & PG_STATE_DATA) {
|
||||
/* Data section Read ------------- */
|
||||
|
Loading…
Reference in New Issue
Block a user