diff options
author | Jon Cooper <jcooper@solarflare.com> | 2016-08-26 17:13:30 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-08-27 07:43:52 +0300 |
commit | 942e298eba850a866a673fa159774313650ce5cc (patch) | |
tree | 4a30488233e961ec367b9fe3a103ea0c6a6a3775 /drivers/net/ethernet/sfc/nic.c | |
parent | df0562c386c778c802b981fc4015a636aa5db866 (diff) | |
download | linux-942e298eba850a866a673fa159774313650ce5cc.tar.xz |
sfc: work around TRIGGER_INTERRUPT command not working on SFC9140
MC_CMD_TRIGGER_INTERRUPT does not work on the SFC9140, as used in the
sfn7x42q and sfn7x24f.
Check for this using the MCDI workaround mechanism.
The command is only used during self test. If it's not supported, skip
the interrupt test.
Signed-off-by: Edward Cree <ecree@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/sfc/nic.c')
-rw-r--r-- | drivers/net/ethernet/sfc/nic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/sfc/nic.c b/drivers/net/ethernet/sfc/nic.c index 89b83e59e1dc..aa1945a858d5 100644 --- a/drivers/net/ethernet/sfc/nic.c +++ b/drivers/net/ethernet/sfc/nic.c @@ -66,11 +66,11 @@ void efx_nic_event_test_start(struct efx_channel *channel) channel->efx->type->ev_test_generate(channel); } -void efx_nic_irq_test_start(struct efx_nic *efx) +int efx_nic_irq_test_start(struct efx_nic *efx) { efx->last_irq_cpu = -1; smp_wmb(); - efx->type->irq_test_generate(efx); + return efx->type->irq_test_generate(efx); } /* Hook interrupt handler(s) |