diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2009-11-28 22:43:23 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-29 19:46:30 -0500 |
commit | 9bfc4bb1f9b5863b177752b88e8bfa364e83a4fa (patch) | |
tree | c4ca25f993298ec1a2a10f6027e3958186b364dc /drivers/net/sfc/falcon.c | |
parent | eb9f6744cbfa97674c13263802259b5aa0034594 (diff) |
sfc: Add efx_nic_type operation for register self-test
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sfc/falcon.c')
-rw-r--r-- | drivers/net/sfc/falcon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/sfc/falcon.c b/drivers/net/sfc/falcon.c index 6a96c699e15b..bcdc5452bfd0 100644 --- a/drivers/net/sfc/falcon.c +++ b/drivers/net/sfc/falcon.c | |||
@@ -2458,7 +2458,7 @@ static bool efx_masked_compare_oword(const efx_oword_t *a, const efx_oword_t *b, | |||
2458 | ((a->u64[1] ^ b->u64[1]) & mask->u64[1]); | 2458 | ((a->u64[1] ^ b->u64[1]) & mask->u64[1]); |
2459 | } | 2459 | } |
2460 | 2460 | ||
2461 | int falcon_test_registers(struct efx_nic *efx) | 2461 | static int falcon_b0_test_registers(struct efx_nic *efx) |
2462 | { | 2462 | { |
2463 | unsigned address = 0, i, j; | 2463 | unsigned address = 0, i, j; |
2464 | efx_oword_t mask, imask, original, reg, buf; | 2464 | efx_oword_t mask, imask, original, reg, buf; |
@@ -3327,6 +3327,7 @@ struct efx_nic_type falcon_b0_nic_type = { | |||
3327 | .get_wol = falcon_get_wol, | 3327 | .get_wol = falcon_get_wol, |
3328 | .set_wol = falcon_set_wol, | 3328 | .set_wol = falcon_set_wol, |
3329 | .resume_wol = efx_port_dummy_op_void, | 3329 | .resume_wol = efx_port_dummy_op_void, |
3330 | .test_registers = falcon_b0_test_registers, | ||
3330 | .default_mac_ops = &falcon_xmac_operations, | 3331 | .default_mac_ops = &falcon_xmac_operations, |
3331 | 3332 | ||
3332 | .revision = EFX_REV_FALCON_B0, | 3333 | .revision = EFX_REV_FALCON_B0, |