Commit 897a88d9 authored by Matthias Beyer's avatar Matthias Beyer Committed by Greg Kroah-Hartman

Staging: bcm: nvm.c: Fixed variable type

The variable type of the local variable 'j' should be 'int' instead of
'unsigned int'.
Suggested-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarMatthias Beyer <mail@beyermatthias.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c837c549
...@@ -1040,7 +1040,7 @@ static int bulk_read_complete_sector(struct bcm_mini_adapter *ad, ...@@ -1040,7 +1040,7 @@ static int bulk_read_complete_sector(struct bcm_mini_adapter *ad,
unsigned int partoff, unsigned int partoff,
unsigned int i) unsigned int i)
{ {
unsigned int j; int j;
int bulk_read_stat; int bulk_read_stat;
FP_FLASH_WRITE_STATUS writef = FP_FLASH_WRITE_STATUS writef =
ad->fpFlashWriteWithStatusCheck; ad->fpFlashWriteWithStatusCheck;
......
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