diff mbox series

[v2] rtl8188eu: Add rtw_led_enable module parameter

Message ID 869a61437edb52d60721ac8b2a7cccc43e3b0fb4.camel@hadess.net (mailing list archive)
State Not Applicable
Delegated to: Kalle Valo
Headers show
Series [v2] rtl8188eu: Add rtw_led_enable module parameter | expand

Commit Message

Bastien Nocera Feb. 29, 2020, 7:01 p.m. UTC
Make it possible to disable the LED, as it can be pretty annoying
depending on where it's located.

See also https://github.com/lwfinger/rtl8188eu/pull/304 for the
out-of-tree version.

Signed-off-by: Bastien Nocera <hadess@hadess.net>
---

Changes since v1:
- added snippet about the out-of-tree version
- resend

 drivers/staging/rtl8188eu/core/rtw_led.c      | 6 ++++++
 drivers/staging/rtl8188eu/include/drv_types.h | 2 ++
 drivers/staging/rtl8188eu/os_dep/os_intfs.c   | 5 +++++
 3 files changed, 13 insertions(+)

 	registry_par->ampdu_enable = (u8)rtw_ampdu_enable;

Comments

Kalle Valo March 12, 2020, 1:38 p.m. UTC | #1
Bastien Nocera <hadess@hadess.net> wrote:

> Make it possible to disable the LED, as it can be pretty annoying
> depending on where it's located.
> 
> See also https://github.com/lwfinger/rtl8188eu/pull/304 for the
> out-of-tree version.
> 
> Signed-off-by: Bastien Nocera <hadess@hadess.net>

Please use "staging: " prefix for staging patches, easier for me to filter that
way.
Bastien Nocera March 12, 2020, 1:46 p.m. UTC | #2
On Thu, 2020-03-12 at 13:38 +0000, Kalle Valo wrote:
> Bastien Nocera <hadess@hadess.net> wrote:
> 
> > Make it possible to disable the LED, as it can be pretty annoying
> > depending on where it's located.
> > 
> > See also https://github.com/lwfinger/rtl8188eu/pull/304 for the
> > out-of-tree version.
> > 
> > Signed-off-by: Bastien Nocera <hadess@hadess.net>
> 
> Please use "staging: " prefix for staging patches, easier for me to
> filter that
> way.

Do you want me to resend it, or will you amend this patch?

Cheers
Kalle Valo March 12, 2020, 2:15 p.m. UTC | #3
Bastien Nocera <hadess@hadess.net> writes:

> On Thu, 2020-03-12 at 13:38 +0000, Kalle Valo wrote:
>> Bastien Nocera <hadess@hadess.net> wrote:
>> 
>> > Make it possible to disable the LED, as it can be pretty annoying
>> > depending on where it's located.
>> > 
>> > See also https://github.com/lwfinger/rtl8188eu/pull/304 for the
>> > out-of-tree version.
>> > 
>> > Signed-off-by: Bastien Nocera <hadess@hadess.net>
>> 
>> Please use "staging: " prefix for staging patches, easier for me to
>> filter that
>> way.
>
> Do you want me to resend it, or will you amend this patch?

Greg applies staging patches so it's up to him. Ah, only noticed now tha
you didn't CC him so he didn't see this patch. You should check how
staging patches are supposed to be sent, I don't know that subsystem
exactly works.
Bastien Nocera March 24, 2020, 10:36 a.m. UTC | #4
On Thu, 2020-03-12 at 16:15 +0200, Kalle Valo wrote:
> Bastien Nocera <hadess@hadess.net> writes:
> 
> > On Thu, 2020-03-12 at 13:38 +0000, Kalle Valo wrote:
> > > Bastien Nocera <hadess@hadess.net> wrote:
> > > 
> > > > Make it possible to disable the LED, as it can be pretty
> > > > annoying
> > > > depending on where it's located.
> > > > 
> > > > See also https://github.com/lwfinger/rtl8188eu/pull/304 for the
> > > > out-of-tree version.
> > > > 
> > > > Signed-off-by: Bastien Nocera <hadess@hadess.net>
> > > 
> > > Please use "staging: " prefix for staging patches, easier for me
> > > to
> > > filter that
> > > way.
> > 
> > Do you want me to resend it, or will you amend this patch?
> 
> Greg applies staging patches so it's up to him. Ah, only noticed now
> tha
> you didn't CC him so he didn't see this patch. You should check how
> staging patches are supposed to be sent, I don't know that subsystem
> exactly works.

Done.

Cheers
diff mbox series

Patch

diff --git a/drivers/staging/rtl8188eu/core/rtw_led.c
b/drivers/staging/rtl8188eu/core/rtw_led.c
index d1406cc99768..75a859accb7e 100644
--- a/drivers/staging/rtl8188eu/core/rtw_led.c
+++ b/drivers/staging/rtl8188eu/core/rtw_led.c
@@ -467,10 +467,16 @@  void blink_handler(struct LED_871x *pLed)
 
 void led_control_8188eu(struct adapter *padapter, enum LED_CTL_MODE
LedAction)
 {
+	struct registry_priv *registry_par;
+
 	if (padapter->bSurpriseRemoved || padapter->bDriverStopped ||
 	    !padapter->hw_init_completed)
 		return;
 
+	registry_par = &padapter->registrypriv;
+	if (!registry_par->led_enable)
+		return;
+
 	if ((padapter->pwrctrlpriv.rf_pwrstate != rf_on &&
 	     padapter->pwrctrlpriv.rfoff_reason > RF_CHANGE_BY_PS) &&
 	    (LedAction == LED_CTL_TX || LedAction == LED_CTL_RX ||
diff --git a/drivers/staging/rtl8188eu/include/drv_types.h
b/drivers/staging/rtl8188eu/include/drv_types.h
index 35c0946bc65d..4ca828141d3f 100644
--- a/drivers/staging/rtl8188eu/include/drv_types.h
+++ b/drivers/staging/rtl8188eu/include/drv_types.h
@@ -67,6 +67,8 @@  struct registry_priv {
 	u8	wmm_enable;
 	u8	uapsd_enable;
 
+	u8	led_enable;
+
 	struct wlan_bssid_ex    dev_network;
 
 	u8	ht_enable;
diff --git a/drivers/staging/rtl8188eu/os_dep/os_intfs.c
b/drivers/staging/rtl8188eu/os_dep/os_intfs.c
index 8907bf6bb7ff..ba55ae741215 100644
--- a/drivers/staging/rtl8188eu/os_dep/os_intfs.c
+++ b/drivers/staging/rtl8188eu/os_dep/os_intfs.c
@@ -47,6 +47,8 @@  static int rtw_acm_method;/*  0:By SW 1:By HW. */
 static int rtw_wmm_enable = 1;/*  default is set to enable the wmm. */
 static int rtw_uapsd_enable;
 
+static int rtw_led_enable = 1;
+
 static int rtw_ht_enable = 1;
 /* 0 :disable, bit(0): enable 2.4g, bit(1): enable 5g */
 static int rtw_cbw40_enable = 3;
@@ -98,6 +100,7 @@  module_param(rtw_channel, int, 0644);
 module_param(rtw_wmm_enable, int, 0644);
 module_param(rtw_vrtl_carrier_sense, int, 0644);
 module_param(rtw_vcs_type, int, 0644);
+module_param(rtw_led_enable, int, 0644);
 module_param(rtw_ht_enable, int, 0644);
 module_param(rtw_cbw40_enable, int, 0644);
 module_param(rtw_ampdu_enable, int, 0644);
@@ -162,6 +165,8 @@  static void loadparam(struct adapter *padapter,
struct net_device *pnetdev)
 	registry_par->wmm_enable = (u8)rtw_wmm_enable;
 	registry_par->uapsd_enable = (u8)rtw_uapsd_enable;
 
+	registry_par->led_enable = (u8)rtw_led_enable;
+
 	registry_par->ht_enable = (u8)rtw_ht_enable;
 	registry_par->cbw40_enable = (u8)rtw_cbw40_enable;