Commit b6d96931 authored by Edward Cree's avatar Edward Cree Committed by David S. Miller

sfc: fix unused-but-set-variable warning in efx_farch_filter_remove_safe

Thanks to some past refactor, 'spec' is not actually used in this
 function; the code using it moved to the callee efx_farch_filter_remove.
Remove the variable to fix a W=1 warning.
Signed-off-by: default avatarEdward Cree <ecree@solarflare.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 35ff765f
...@@ -2589,7 +2589,6 @@ int efx_farch_filter_remove_safe(struct efx_nic *efx, ...@@ -2589,7 +2589,6 @@ int efx_farch_filter_remove_safe(struct efx_nic *efx,
enum efx_farch_filter_table_id table_id; enum efx_farch_filter_table_id table_id;
struct efx_farch_filter_table *table; struct efx_farch_filter_table *table;
unsigned int filter_idx; unsigned int filter_idx;
struct efx_farch_filter_spec *spec;
int rc; int rc;
table_id = efx_farch_filter_id_table_id(filter_id); table_id = efx_farch_filter_id_table_id(filter_id);
...@@ -2601,7 +2600,6 @@ int efx_farch_filter_remove_safe(struct efx_nic *efx, ...@@ -2601,7 +2600,6 @@ int efx_farch_filter_remove_safe(struct efx_nic *efx,
if (filter_idx >= table->size) if (filter_idx >= table->size)
return -ENOENT; return -ENOENT;
down_write(&state->lock); down_write(&state->lock);
spec = &table->spec[filter_idx];
rc = efx_farch_filter_remove(efx, table, filter_idx, priority); rc = efx_farch_filter_remove(efx, table, filter_idx, priority);
up_write(&state->lock); up_write(&state->lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment