diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2009-11-25 16:10:05 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-26 15:59:23 -0800 |
commit | 1338344a84f5ea60a6689127d2717845e8564b1a (patch) | |
tree | 8ae6b8cee9e9148bd2ec536959639ec92f51fea5 /drivers/net/sfc | |
parent | 127e6e10ad17585c48cba8e1dcf30d98b90ee583 (diff) | |
download | kernel_samsung_espresso10-1338344a84f5ea60a6689127d2717845e8564b1a.zip kernel_samsung_espresso10-1338344a84f5ea60a6689127d2717845e8564b1a.tar.gz kernel_samsung_espresso10-1338344a84f5ea60a6689127d2717845e8564b1a.tar.bz2 |
sfc: Remove unused function efx_flush_queues()
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sfc')
-rw-r--r-- | drivers/net/sfc/efx.c | 13 | ||||
-rw-r--r-- | drivers/net/sfc/efx.h | 1 |
2 files changed, 0 insertions, 14 deletions
diff --git a/drivers/net/sfc/efx.c b/drivers/net/sfc/efx.c index dc85efa..4ebad61 100644 --- a/drivers/net/sfc/efx.c +++ b/drivers/net/sfc/efx.c @@ -1237,19 +1237,6 @@ static void efx_remove_all(struct efx_nic *efx) efx_remove_nic(efx); } -/* A convinience function to safely flush all the queues */ -void efx_flush_queues(struct efx_nic *efx) -{ - EFX_ASSERT_RESET_SERIALISED(efx); - - efx_stop_all(efx); - - efx_fini_channels(efx); - efx_init_channels(efx); - - efx_start_all(efx); -} - /************************************************************************** * * Interrupt moderation diff --git a/drivers/net/sfc/efx.h b/drivers/net/sfc/efx.h index 3497b03..7acf821 100644 --- a/drivers/net/sfc/efx.h +++ b/drivers/net/sfc/efx.h @@ -56,7 +56,6 @@ extern void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue, int delay); /* Channels */ extern void efx_process_channel_now(struct efx_channel *channel); -extern void efx_flush_queues(struct efx_nic *efx); #define EFX_EVQ_SIZE 4096 #define EFX_EVQ_MASK (EFX_EVQ_SIZE - 1) |