Commit 9f30c483 authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman

staging: wilc1000: rename WILC_WFI_mon_xmit to avoid uppercase for function name

Changes to avoid the use of uppercase for function name.
Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 73d359a0
...@@ -145,7 +145,7 @@ static int mon_mgmt_tx(struct net_device *dev, const u8 *buf, size_t len) ...@@ -145,7 +145,7 @@ static int mon_mgmt_tx(struct net_device *dev, const u8 *buf, size_t len)
return 0; 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) struct net_device *dev)
{ {
u32 rtap_len, ret = 0; u32 rtap_len, ret = 0;
...@@ -218,7 +218,7 @@ static netdev_tx_t WILC_WFI_mon_xmit(struct sk_buff *skb, ...@@ -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 = { static const struct net_device_ops wilc_wfi_netdev_ops = {
.ndo_start_xmit = WILC_WFI_mon_xmit, .ndo_start_xmit = wilc_wfi_mon_xmit,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment