Commit fe149785 authored by Luis Bosch's avatar Luis Bosch Committed by Greg Kroah-Hartman

staging: vt6656: resolved checkpatch finding

Added spaces in for loop arguments.
Signed-off-by: default avatarLuis Bosch <luis.bosch@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 62e7e961
......@@ -559,7 +559,7 @@ BOOL KeybGetTransmitKey(PSKeyManagement pTable, PBYTE pbyBSSID, DWORD dwKeyType,
int i, ii;
*pKey = NULL;
for (i=0;i<MAX_KEY_TABLE;i++) {
for (i = 0; i < MAX_KEY_TABLE; i++) {
if ((pTable->KeyTable[i].bInUse == TRUE) &&
!compare_ether_addr(pTable->KeyTable[i].abyBSSID, pbyBSSID)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment