diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2008-09-01 07:48:46 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-09-03 09:53:48 -0400 |
commit | bc3c90a2b70652b87cde8de65275d6f41d0f24c3 (patch) | |
tree | 3d9a7eebad85bc86f5a3fbd4fdf4cc2b7be950a4 /drivers/net/sfc/rx.h | |
parent | c1e5fcc980b7b2185b29e4f9f0d8266806ada9eb (diff) |
sfc: Remove some unreachable error paths
Some functions return an error code which is always 0. Change their
return types to void and simplify their callers accordingly.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/sfc/rx.h')
-rw-r--r-- | drivers/net/sfc/rx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sfc/rx.h b/drivers/net/sfc/rx.h index 187b1109973c..0e88a9ddc1c6 100644 --- a/drivers/net/sfc/rx.h +++ b/drivers/net/sfc/rx.h | |||
@@ -14,7 +14,7 @@ | |||
14 | 14 | ||
15 | int efx_probe_rx_queue(struct efx_rx_queue *rx_queue); | 15 | int efx_probe_rx_queue(struct efx_rx_queue *rx_queue); |
16 | void efx_remove_rx_queue(struct efx_rx_queue *rx_queue); | 16 | void efx_remove_rx_queue(struct efx_rx_queue *rx_queue); |
17 | int efx_init_rx_queue(struct efx_rx_queue *rx_queue); | 17 | void efx_init_rx_queue(struct efx_rx_queue *rx_queue); |
18 | void efx_fini_rx_queue(struct efx_rx_queue *rx_queue); | 18 | void efx_fini_rx_queue(struct efx_rx_queue *rx_queue); |
19 | 19 | ||
20 | int efx_lro_init(struct net_lro_mgr *lro_mgr, struct efx_nic *efx); | 20 | int efx_lro_init(struct net_lro_mgr *lro_mgr, struct efx_nic *efx); |