summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
diff options
context:
space:
mode:
authorLuc Van Oostenryck2018-04-24 15:18:26 +0200
committerGreg Kroah-Hartman2018-04-25 15:58:04 +0200
commit955ad171037bdd798e8552fdeabb15f9873cd062 (patch)
treefdf9b111276b33ff23ed38eb66c2c3a6301b7a66 /drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
parentstaging: visornic: fix visornic_xmit()'s return type (diff)
downloadkernel-qcow2-linux-955ad171037bdd798e8552fdeabb15f9873cd062.tar.gz
kernel-qcow2-linux-955ad171037bdd798e8552fdeabb15f9873cd062.tar.xz
kernel-qcow2-linux-955ad171037bdd798e8552fdeabb15f9873cd062.zip
staging: rtl8723bs: fix rtw_cfg80211_monitor_if_xmit_entry()'s return type
The method ndo_start_xmit() is defined as returning an 'netdev_tx_t', which is a typedef for an enum type, but the implementation in this driver returns an 'int'. Fix this by returning 'netdev_tx_t' in this driver too. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c')
-rw-r--r--drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c b/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
index 46bc2e512557..75d8a16f54c6 100644
--- a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
+++ b/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
@@ -2472,7 +2472,7 @@ static int rtw_cfg80211_monitor_if_close(struct net_device *ndev)
return ret;
}
-static int rtw_cfg80211_monitor_if_xmit_entry(struct sk_buff *skb, struct net_device *ndev)
+static netdev_tx_t rtw_cfg80211_monitor_if_xmit_entry(struct sk_buff *skb, struct net_device *ndev)
{
int ret = 0;
int rtap_len;