diff options
Diffstat (limited to 'drivers/net/tg3.c')
-rw-r--r-- | drivers/net/tg3.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 76ad141ab448..f59f36910e98 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
@@ -12604,9 +12604,9 @@ static void __devinit tg3_read_partno(struct tg3 *tp) | |||
12604 | while (i < (block_end - 2)) { | 12604 | while (i < (block_end - 2)) { |
12605 | if (vpd_data[i + 0] == 'P' && | 12605 | if (vpd_data[i + 0] == 'P' && |
12606 | vpd_data[i + 1] == 'N') { | 12606 | vpd_data[i + 1] == 'N') { |
12607 | int partno_len = vpd_data[i + 2]; | 12607 | int partno_len = pci_vpd_info_field_size(&vpd_data[i]); |
12608 | 12608 | ||
12609 | i += 3; | 12609 | i += PCI_VPD_INFO_FLD_HDR_SIZE; |
12610 | if (partno_len > TG3_BPN_SIZE || | 12610 | if (partno_len > TG3_BPN_SIZE || |
12611 | (partno_len + i) > TG3_NVM_VPD_LEN) | 12611 | (partno_len + i) > TG3_NVM_VPD_LEN) |
12612 | goto out_not_found; | 12612 | goto out_not_found; |
@@ -12617,7 +12617,8 @@ static void __devinit tg3_read_partno(struct tg3 *tp) | |||
12617 | /* Success. */ | 12617 | /* Success. */ |
12618 | return; | 12618 | return; |
12619 | } | 12619 | } |
12620 | i += 3 + vpd_data[i + 2]; | 12620 | i += PCI_VPD_INFO_FLD_HDR_SIZE + |
12621 | pci_vpd_info_field_size(&vpd_data[i]); | ||
12621 | } | 12622 | } |
12622 | 12623 | ||
12623 | /* Part number not found. */ | 12624 | /* Part number not found. */ |