mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-04 00:08:44 -05:00
net: ena: make symbol 'ena_alloc_map_page' static
The sparse tool complains as follows:
drivers/net/ethernet/amazon/ena/ena_netdev.c:978:13: warning:
symbol 'ena_alloc_map_page' was not declared. Should it be static?
This symbol is not used outside of ena_netdev.c, so marks it static.
Fixes: 947c54c395 ("net: ena: Use dev_alloc() in RX buffer allocation")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
f25247d887
commit
6fb566c927
@@ -975,7 +975,8 @@ static void ena_free_all_io_rx_resources(struct ena_adapter *adapter)
|
||||
ena_free_rx_resources(adapter, i);
|
||||
}
|
||||
|
||||
struct page *ena_alloc_map_page(struct ena_ring *rx_ring, dma_addr_t *dma)
|
||||
static struct page *ena_alloc_map_page(struct ena_ring *rx_ring,
|
||||
dma_addr_t *dma)
|
||||
{
|
||||
struct page *page;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user