aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/sfc/efx.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ethernet/sfc/efx.c')
-rw-r--r--drivers/net/ethernet/sfc/efx.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/net/ethernet/sfc/efx.c b/drivers/net/ethernet/sfc/efx.c
index de9afebe1830..d5731f1fe6d6 100644
--- a/drivers/net/ethernet/sfc/efx.c
+++ b/drivers/net/ethernet/sfc/efx.c
@@ -2229,13 +2229,15 @@ void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2229 2229
2230/* PCI device ID table */ 2230/* PCI device ID table */
2231static DEFINE_PCI_DEVICE_TABLE(efx_pci_table) = { 2231static DEFINE_PCI_DEVICE_TABLE(efx_pci_table) = {
2232 {PCI_DEVICE(EFX_VENDID_SFC, FALCON_A_P_DEVID), 2232 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2233 PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0),
2233 .driver_data = (unsigned long) &falcon_a1_nic_type}, 2234 .driver_data = (unsigned long) &falcon_a1_nic_type},
2234 {PCI_DEVICE(EFX_VENDID_SFC, FALCON_B_P_DEVID), 2235 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2236 PCI_DEVICE_ID_SOLARFLARE_SFC4000B),
2235 .driver_data = (unsigned long) &falcon_b0_nic_type}, 2237 .driver_data = (unsigned long) &falcon_b0_nic_type},
2236 {PCI_DEVICE(EFX_VENDID_SFC, BETHPAGE_A_P_DEVID), 2238 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, BETHPAGE_A_P_DEVID),
2237 .driver_data = (unsigned long) &siena_a0_nic_type}, 2239 .driver_data = (unsigned long) &siena_a0_nic_type},
2238 {PCI_DEVICE(EFX_VENDID_SFC, SIENA_A_P_DEVID), 2240 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, SIENA_A_P_DEVID),
2239 .driver_data = (unsigned long) &siena_a0_nic_type}, 2241 .driver_data = (unsigned long) &siena_a0_nic_type},
2240 {0} /* end of list */ 2242 {0} /* end of list */
2241}; 2243};