net: dwc-xlgmac: Fix spelling mistake in function name
authorColin Ian King <colin.king@canonical.com>
Thu, 4 Feb 2021 09:49:44 +0000 (09:49 +0000)
committerJakub Kicinski <kuba@kernel.org>
Sat, 6 Feb 2021 19:37:01 +0000 (11:37 -0800)
There is a spelling mistake in the function name alloc_channles_and_rings.
Fix this by renaming it to alloc_channels_and_rings.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210204094944.51460-1-colin.king@canonical.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/synopsys/dwc-xlgmac-desc.c
drivers/net/ethernet/synopsys/dwc-xlgmac-net.c
drivers/net/ethernet/synopsys/dwc-xlgmac.h

index 8c4195a..589797b 100644 (file)
@@ -634,7 +634,7 @@ err_out:
 
 void xlgmac_init_desc_ops(struct xlgmac_desc_ops *desc_ops)
 {
-       desc_ops->alloc_channles_and_rings = xlgmac_alloc_channels_and_rings;
+       desc_ops->alloc_channels_and_rings = xlgmac_alloc_channels_and_rings;
        desc_ops->free_channels_and_rings = xlgmac_free_channels_and_rings;
        desc_ops->map_tx_skb = xlgmac_map_tx_skb;
        desc_ops->map_rx_buffer = xlgmac_map_rx_buffer;
index 26aa7f3..26d178f 100644 (file)
@@ -654,7 +654,7 @@ static int xlgmac_open(struct net_device *netdev)
        pdata->rx_buf_size = ret;
 
        /* Allocate the channels and rings */
-       ret = desc_ops->alloc_channles_and_rings(pdata);
+       ret = desc_ops->alloc_channels_and_rings(pdata);
        if (ret)
                return ret;
 
index cab3e40..8598aaf 100644 (file)
@@ -379,7 +379,7 @@ struct xlgmac_channel {
 } ____cacheline_aligned;
 
 struct xlgmac_desc_ops {
-       int (*alloc_channles_and_rings)(struct xlgmac_pdata *pdata);
+       int (*alloc_channels_and_rings)(struct xlgmac_pdata *pdata);
        void (*free_channels_and_rings)(struct xlgmac_pdata *pdata);
        int (*map_tx_skb)(struct xlgmac_channel *channel,
                          struct sk_buff *skb);