diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2018-09-15 04:42:09 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-17 18:07:04 +0300 |
commit | 0a959e45846ad697c54f0d2bd71fa55bdd1a8a39 (patch) | |
tree | e418f5419bffc49e8f7e680fb362a1e258a9adc2 /drivers | |
parent | b8b2de91e9dbb89bf4c34a860b04e53a1b1416bf (diff) | |
download | linux-0a959e45846ad697c54f0d2bd71fa55bdd1a8a39.tar.xz |
net: hns: make function hns_gmac_wait_fifo_clean() static
Fixes the following sparse warning:
drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c:322:5: warning:
symbol 'hns_gmac_wait_fifo_clean' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c b/drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c index 09e4061d1fa6..aaf72c055711 100644 --- a/drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c +++ b/drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c @@ -319,7 +319,7 @@ static void hns_gmac_set_promisc(void *mac_drv, u8 en) hns_gmac_set_uc_match(mac_drv, en); } -int hns_gmac_wait_fifo_clean(void *mac_drv) +static int hns_gmac_wait_fifo_clean(void *mac_drv) { struct mac_driver *drv = (struct mac_driver *)mac_drv; int wait_cnt; |