]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
staging: wilc1000: rename WILC_WFI_mon_xmit to avoid uppercase for function name
authorAjay Singh <ajay.kathat@microchip.com>
Wed, 2 May 2018 07:13:36 +0000 (12:43 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 3 May 2018 20:56:35 +0000 (13:56 -0700)
Changes to avoid the use of uppercase for function name.

Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/linux_mon.c

index 166764612c9890558164d9beff32683ebb302a98..d5af7365ee9924842f284abdcf9608e984657bfd 100644 (file)
@@ -145,7 +145,7 @@ static int mon_mgmt_tx(struct net_device *dev, const u8 *buf, size_t len)
        return 0;
 }
 
-static netdev_tx_t WILC_WFI_mon_xmit(struct sk_buff *skb,
+static netdev_tx_t wilc_wfi_mon_xmit(struct sk_buff *skb,
                                     struct net_device *dev)
 {
        u32 rtap_len, ret = 0;
@@ -218,7 +218,7 @@ static netdev_tx_t WILC_WFI_mon_xmit(struct sk_buff *skb,
 }
 
 static const struct net_device_ops wilc_wfi_netdev_ops = {
-       .ndo_start_xmit         = WILC_WFI_mon_xmit,
+       .ndo_start_xmit         = wilc_wfi_mon_xmit,
 
 };