aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sfc/efx.c
diff options
context:
space:
mode:
authorBen Hutchings <bhutchings@solarflare.com>2009-11-28 00:36:04 -0500
committerDavid S. Miller <davem@davemloft.net>2009-11-29 02:58:54 -0500
commitdaeda6309e1382819a8f8bab548560742ac26cc2 (patch)
tree164dbcb3c1e96662c7efbe4b22a39630de9ede3c /drivers/net/sfc/efx.c
parent299f8d69f3590fdbd7b22880234196de3b39ceca (diff)
sfc: Decouple NIC revision number from Falcon PCI revision number
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sfc/efx.c')
-rw-r--r--drivers/net/sfc/efx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sfc/efx.c b/drivers/net/sfc/efx.c
index bed45a599874..f5e81114270a 100644
--- a/drivers/net/sfc/efx.c
+++ b/drivers/net/sfc/efx.c
@@ -1863,9 +1863,9 @@ void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
1863/* PCI device ID table */ 1863/* PCI device ID table */
1864static struct pci_device_id efx_pci_table[] __devinitdata = { 1864static struct pci_device_id efx_pci_table[] __devinitdata = {
1865 {PCI_DEVICE(EFX_VENDID_SFC, FALCON_A_P_DEVID), 1865 {PCI_DEVICE(EFX_VENDID_SFC, FALCON_A_P_DEVID),
1866 .driver_data = (unsigned long) &falcon_a_nic_type}, 1866 .driver_data = (unsigned long) &falcon_a1_nic_type},
1867 {PCI_DEVICE(EFX_VENDID_SFC, FALCON_B_P_DEVID), 1867 {PCI_DEVICE(EFX_VENDID_SFC, FALCON_B_P_DEVID),
1868 .driver_data = (unsigned long) &falcon_b_nic_type}, 1868 .driver_data = (unsigned long) &falcon_b0_nic_type},
1869 {0} /* end of list */ 1869 {0} /* end of list */
1870}; 1870};
1871 1871