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>
This commit is contained in:
Ben Hutchings
2009-11-29 03:43:23 +00:00
committed by David S. Miller
parent eb9f6744cb
commit 9bfc4bb1f9
4 changed files with 10 additions and 8 deletions

View File

@@ -122,14 +122,14 @@ static int efx_test_nvram(struct efx_nic *efx, struct efx_self_tests *tests)
static int efx_test_chip(struct efx_nic *efx, struct efx_self_tests *tests)
{
int rc;
int rc = 0;
/* Not supported on A-series silicon */
if (efx_nic_rev(efx) < EFX_REV_FALCON_B0)
return 0;
/* Test register access */
if (efx->type->test_registers) {
rc = efx->type->test_registers(efx);
tests->registers = rc ? -1 : 1;
}
rc = falcon_test_registers(efx);
tests->registers = rc ? -1 : 1;
return rc;
}