diff options
author | Yang Shen <shenyang39@huawei.com> | 2021-05-17 07:45:15 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-05-18 00:12:38 +0300 |
commit | c706c75aaee20e5ee05a05f6504a5711e473002e (patch) | |
tree | 8d34167b67f930e50dacfd6ad07773d8fe2f050f /drivers/net/ethernet/atheros/atlx | |
parent | b43e1554a7cf785afdcb91df259bbe8dfe0e729d (diff) | |
download | linux-c706c75aaee20e5ee05a05f6504a5711e473002e.tar.xz |
net: atheros: atl1x: Fix wrong function name in comments
Fixes the following W=1 kernel build warning(s):
drivers/net/ethernet/atheros/atlx/atl1.c:1020: warning: expecting prototype for atl1_setup_mem_resources(). Prototype was for atl1_setup_ring_resources() instead
Cc: Chris Snook <chris.snook@gmail.com>
Signed-off-by: Yang Shen <shenyang39@huawei.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/atheros/atlx')
-rw-r--r-- | drivers/net/ethernet/atheros/atlx/atl1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/atheros/atlx/atl1.c b/drivers/net/ethernet/atheros/atlx/atl1.c index eaf96d002fa5..c67201a13cf5 100644 --- a/drivers/net/ethernet/atheros/atlx/atl1.c +++ b/drivers/net/ethernet/atheros/atlx/atl1.c @@ -1011,7 +1011,7 @@ static int atl1_mii_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) } /** - * atl1_setup_mem_resources - allocate Tx / RX descriptor resources + * atl1_setup_ring_resources - allocate Tx / RX descriptor resources * @adapter: board private structure * * Return 0 on success, negative on failure |