diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-06-24 12:57:31 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-06-24 16:08:25 +0200 |
commit | 829eb05365ff06e8adc23f2541597d0cc3c18348 (patch) | |
tree | 5983432405c7c5cd1c68bad7a7735df7c6d29a26 | |
parent | strparser: Corrected typo in documentation. (diff) | |
download | linux-829eb05365ff06e8adc23f2541597d0cc3c18348.tar.xz linux-829eb05365ff06e8adc23f2541597d0cc3c18348.zip |
sfc: make function efx_rps_hash_bucket static
The function efx_rps_hash_bucket is local to the source and
does not need to be in global scope, so make it static.
Cleans up sparse warning:
symbol 'efx_rps_hash_bucket' was not declared. Should it be static?
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/sfc/efx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/sfc/efx.c b/drivers/net/ethernet/sfc/efx.c index ad4a354ce570..570ec72266f3 100644 --- a/drivers/net/ethernet/sfc/efx.c +++ b/drivers/net/ethernet/sfc/efx.c @@ -3180,6 +3180,7 @@ bool efx_rps_check_rule(struct efx_arfs_rule *rule, unsigned int filter_idx, return true; } +static struct hlist_head *efx_rps_hash_bucket(struct efx_nic *efx, const struct efx_filter_spec *spec) { |