summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h
diff options
context:
space:
mode:
authorSinan Kaya2017-12-19 06:37:49 +0100
committerBjorn Helgaas2018-01-17 15:16:46 +0100
commit8307f1a0114bb859941d20fb1109aef13fb6e2ae (patch)
treeaf9f3ba914f275b3cc91162d5f8b258520d5ca43 /drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h
parentpowerpc/via-pmu: Deprecate pci_get_bus_and_slot() (diff)
downloadkernel-qcow2-linux-8307f1a0114bb859941d20fb1109aef13fb6e2ae.tar.gz
kernel-qcow2-linux-8307f1a0114bb859941d20fb1109aef13fb6e2ae.tar.xz
kernel-qcow2-linux-8307f1a0114bb859941d20fb1109aef13fb6e2ae.zip
bnx2x: Deprecate pci_get_bus_and_slot()
pci_get_bus_and_slot() is restrictive such that it assumes domain=0 as where a PCI device is present. This restricts the device drivers to be reused for other domain numbers. Getting ready to remove pci_get_bus_and_slot() function in favor of pci_get_domain_bus_and_slot(). Introduce bnx2x_vf_domain() function to extract the domain information and save it to VF specific data structure. Use the saved domain value while calling pci_get_domain_bus_and_slot(). Signed-off-by: Sinan Kaya <okaya@codeaurora.org> Signed-off-by: Bjorn Helgaas <helgaas@kernel.org> Acked-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h')
-rw-r--r--drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h
index 53466f6cebab..eb814c65152f 100644
--- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h
+++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h
@@ -182,6 +182,7 @@ struct bnx2x_virtf {
u32 error; /* 0 means all's-well */
/* BDF */
+ unsigned int domain;
unsigned int bus;
unsigned int devfn;