diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2009-11-28 00:36:04 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-29 02:58:54 -0500 |
commit | daeda6309e1382819a8f8bab548560742ac26cc2 (patch) | |
tree | 164dbcb3c1e96662c7efbe4b22a39630de9ede3c /drivers/net/sfc/falcon.h | |
parent | 299f8d69f3590fdbd7b22880234196de3b39ceca (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/falcon.h')
-rw-r--r-- | drivers/net/sfc/falcon.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/net/sfc/falcon.h b/drivers/net/sfc/falcon.h index a561f6758bc6..81196a0fb504 100644 --- a/drivers/net/sfc/falcon.h +++ b/drivers/net/sfc/falcon.h | |||
@@ -19,15 +19,15 @@ | |||
19 | * Falcon hardware control | 19 | * Falcon hardware control |
20 | */ | 20 | */ |
21 | 21 | ||
22 | enum falcon_revision { | 22 | enum { |
23 | FALCON_REV_A0 = 0, | 23 | EFX_REV_FALCON_A0 = 0, |
24 | FALCON_REV_A1 = 1, | 24 | EFX_REV_FALCON_A1 = 1, |
25 | FALCON_REV_B0 = 2, | 25 | EFX_REV_FALCON_B0 = 2, |
26 | }; | 26 | }; |
27 | 27 | ||
28 | static inline int falcon_rev(struct efx_nic *efx) | 28 | static inline int efx_nic_rev(struct efx_nic *efx) |
29 | { | 29 | { |
30 | return efx->pci_dev->revision; | 30 | return efx->type->revision; |
31 | } | 31 | } |
32 | 32 | ||
33 | /** | 33 | /** |
@@ -95,8 +95,8 @@ static inline struct falcon_board *falcon_board(struct efx_nic *efx) | |||
95 | return &data->board; | 95 | return &data->board; |
96 | } | 96 | } |
97 | 97 | ||
98 | extern struct efx_nic_type falcon_a_nic_type; | 98 | extern struct efx_nic_type falcon_a1_nic_type; |
99 | extern struct efx_nic_type falcon_b_nic_type; | 99 | extern struct efx_nic_type falcon_b0_nic_type; |
100 | 100 | ||
101 | /************************************************************************** | 101 | /************************************************************************** |
102 | * | 102 | * |