diff options
author | Vasundhara Volam <vasundhara-v.volam@broadcom.com> | 2020-06-23 19:01:38 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-06-23 20:13:58 -0700 |
commit | c55e28a8b43fcd7dc71868bd165705bc7741a7ca (patch) | |
tree | c7ea122c4257ba027bc75804d81cd4a50c8488c1 /drivers/net/ethernet | |
parent | c2dec363feb41544a76c8083aca2378990e17166 (diff) | |
download | linux-stable-c55e28a8b43fcd7dc71868bd165705bc7741a7ca.tar.gz linux-stable-c55e28a8b43fcd7dc71868bd165705bc7741a7ca.tar.bz2 linux-stable-c55e28a8b43fcd7dc71868bd165705bc7741a7ca.zip |
bnxt_en: Read VPD info only for PFs
Virtual functions does not have VPD information. This patch modifies
calling bnxt_read_vpd_info() only for PFs and avoids an unnecessary
error log.
Fixes: a0d0fd70fed5 ("bnxt_en: Read partno and serialno of the board from VPD")
Signed-off-by: Vasundhara Volam <vasundhara-v.volam@broadcom.com>
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r-- | drivers/net/ethernet/broadcom/bnxt/bnxt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt.c b/drivers/net/ethernet/broadcom/bnxt/bnxt.c index 6dc7cc4df9e8..6a884df44612 100644 --- a/drivers/net/ethernet/broadcom/bnxt/bnxt.c +++ b/drivers/net/ethernet/broadcom/bnxt/bnxt.c @@ -11913,7 +11913,8 @@ static int bnxt_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) dev->ethtool_ops = &bnxt_ethtool_ops; pci_set_drvdata(pdev, dev); - bnxt_vpd_read_info(bp); + if (BNXT_PF(bp)) + bnxt_vpd_read_info(bp); rc = bnxt_alloc_hwrm_resources(bp); if (rc) |