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:
Dan Carpenter 2013-01-11 09:57:33 +03:00 committed by David S. Miller
parent 024e9679a2
commit 17e1a42f2e
1 changed files with 2 additions and 0 deletions

View File

@ -13726,8 +13726,10 @@ static void tg3_get_5720_nvram_info(struct tg3 *tp)
switch (nvmpinstrp) { switch (nvmpinstrp) {
case FLASH_5762_EEPROM_HD: case FLASH_5762_EEPROM_HD:
nvmpinstrp = FLASH_5720_EEPROM_HD; nvmpinstrp = FLASH_5720_EEPROM_HD;
break;
case FLASH_5762_EEPROM_LD: case FLASH_5762_EEPROM_LD:
nvmpinstrp = FLASH_5720_EEPROM_LD; nvmpinstrp = FLASH_5720_EEPROM_LD;
break;
} }
} }