diff options
author | Lad, Prabhakar <prabhakar.csengg@gmail.com> | 2015-02-05 15:29:55 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-05 16:03:27 -0800 |
commit | a20667bf7d1f76e20c42812e69b6eb1d471a3d49 (patch) | |
tree | 51216d6d191ed525788c686dcf021c76f19152c3 /drivers/net/ethernet/cisco | |
parent | bc0ee163732bbb3e1b72a629726713e3ddfd4e61 (diff) | |
download | linux-a20667bf7d1f76e20c42812e69b6eb1d471a3d49.tar.bz2 |
enic: enic_ethtool: fix sparse warning
this patch fixes following sparse warning:
enic_ethtool.c:95:6: warning: symbol 'enic_intr_coal_set_rx' was not declared. Should it be static?
Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/cisco')
-rw-r--r-- | drivers/net/ethernet/cisco/enic/enic_ethtool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/cisco/enic/enic_ethtool.c b/drivers/net/ethernet/cisco/enic/enic_ethtool.c index 0c396c1f55dc..28d9ca675a27 100644 --- a/drivers/net/ethernet/cisco/enic/enic_ethtool.c +++ b/drivers/net/ethernet/cisco/enic/enic_ethtool.c @@ -92,7 +92,7 @@ static const unsigned int enic_n_tx_stats = ARRAY_SIZE(enic_tx_stats); static const unsigned int enic_n_rx_stats = ARRAY_SIZE(enic_rx_stats); static const unsigned int enic_n_gen_stats = ARRAY_SIZE(enic_gen_stats); -void enic_intr_coal_set_rx(struct enic *enic, u32 timer) +static void enic_intr_coal_set_rx(struct enic *enic, u32 timer) { int i; int intr; |