[PATCH 03/11] staging: rtl8188eu: traversal order of the 'remain' variable values inverted

Ivan Safonov insafonov at gmail.com
Wed Nov 4 03:12:51 UTC 2015


The number of the loop passes has not changed.

Signed-off-by: Ivan Safonov <insafonov at gmail.com>
---
 drivers/staging/rtl8188eu/hal/fw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8188eu/hal/fw.c b/drivers/staging/rtl8188eu/hal/fw.c
index 6d6dd15..9cd898c 100644
--- a/drivers/staging/rtl8188eu/hal/fw.c
+++ b/drivers/staging/rtl8188eu/hal/fw.c
@@ -89,7 +89,7 @@ static void _rtl88e_fill_dummy(u8 *pfwbuf, u32 *pfwlen)
 	remain = (remain == 0) ? 0 : (4 - remain);
 	n = remain;
 
-	for (; remain > 0; fwlen++, remain--) {
+	for (remain = 0; remain < n; fwlen++, remain++) {
 		pfwbuf[fwlen] = 0;
 	}
 
-- 
2.4.10



More information about the devel mailing list