092e77d948
Patches by Jes Sorensen: https://git.kernel.org/cgit/linux/kernel/git/jes/linux.git/ Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
From 3bb9c23b43cc4cc37a06c20c62266128040cd5d7 Mon Sep 17 00:00:00 2001
|
|
From: Jes Sorensen <Jes.Sorensen@redhat.com>
|
|
Date: Fri, 22 Jul 2016 13:10:02 -0400
|
|
Subject: [PATCH] rtl8xxxu: Add simple rtl8188eu_rf_on() routine
|
|
|
|
It is not obvious from the vendor driver if we need more than this.
|
|
|
|
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
|
|
---
|
|
drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8188e.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
--- a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8188e.c
|
|
+++ b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8188e.c
|
|
@@ -980,6 +980,11 @@ exit:
|
|
return ret;
|
|
}
|
|
|
|
+static void rtl8188e_enable_rf(struct rtl8xxxu_priv *priv)
|
|
+{
|
|
+ rtl8xxxu_write8(priv, REG_TXPAUSE, 0x00);
|
|
+}
|
|
+
|
|
static void rtl8188e_usb_quirks(struct rtl8xxxu_priv *priv)
|
|
{
|
|
u16 val16;
|
|
@@ -1011,6 +1016,7 @@ struct rtl8xxxu_fileops rtl8188eu_fops =
|
|
.phy_iq_calibrate = rtl8188eu_phy_iq_calibrate,
|
|
.config_channel = rtl8xxxu_gen1_config_channel,
|
|
.parse_rx_desc = rtl8xxxu_parse_rxdesc16,
|
|
+ .enable_rf = rtl8188e_enable_rf,
|
|
.usb_quirks = rtl8188e_usb_quirks,
|
|
.update_rate_mask = rtl8xxxu_gen2_update_rate_mask,
|
|
.report_connect = rtl8xxxu_gen2_report_connect,
|