Skip to content

Commit

Permalink
staging: vt6656: resolved checkpatch finding
Browse files Browse the repository at this point in the history
Added spaces in for loop arguments.

Signed-off-by: Luis Bosch <luis.bosch@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Luis Bosch authored and Greg Kroah-Hartman committed Aug 31, 2010
1 parent 62e7e96 commit fe14978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/vt6656/key.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {

Expand Down

0 comments on commit fe14978

Please sign in to comment.