forked from Minki/linux
tg3: missing break statement in tg3_get_5720_nvram_info()
There is a missing break statement so FLASH_5762_EEPROM_HD gets treated like FLASH_5762_EEPROM_LD. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
024e9679a2
commit
17e1a42f2e
@ -13726,8 +13726,10 @@ static void tg3_get_5720_nvram_info(struct tg3 *tp)
|
||||
switch (nvmpinstrp) {
|
||||
case FLASH_5762_EEPROM_HD:
|
||||
nvmpinstrp = FLASH_5720_EEPROM_HD;
|
||||
break;
|
||||
case FLASH_5762_EEPROM_LD:
|
||||
nvmpinstrp = FLASH_5720_EEPROM_LD;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user