diff mbox series

Input: leds: Change config symbol dependency for audio mute trigger

Message ID 6011ca63-187c-42dd-a5fd-7dd733d6257c@gmail.com
State New
Headers show
Series Input: leds: Change config symbol dependency for audio mute trigger | expand

Commit Message

Heiner Kallweit March 2, 2024, 3:24 p.m. UTC
In a follow-up patch implementation of the LED audio trigger will be
moved to sound/core/snd_ctl_led, including removal of config symbol
LEDS_AUDIO_TRIGGER. Also as of today the audio mute LED trigger
is effectively a no-op w/o config symbol SND_CTL_LED being defined.
Therefore switch the dependency to this config symbol.

Suggested-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
---
 drivers/input/input-leds.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Dmitry Torokhov March 3, 2024, 10:36 p.m. UTC | #1
On Sat, Mar 02, 2024 at 04:24:28PM +0100, Heiner Kallweit wrote:
> In a follow-up patch implementation of the LED audio trigger will be
> moved to sound/core/snd_ctl_led, including removal of config symbol
> LEDS_AUDIO_TRIGGER. Also as of today the audio mute LED trigger
> is effectively a no-op w/o config symbol SND_CTL_LED being defined.
> Therefore switch the dependency to this config symbol.
> 
> Suggested-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>

Applied, thank you.
diff mbox series

Patch

diff --git a/drivers/input/input-leds.c b/drivers/input/input-leds.c
index b16fc8194..6bbf3806e 100644
--- a/drivers/input/input-leds.c
+++ b/drivers/input/input-leds.c
@@ -18,7 +18,7 @@ 
 #define VT_TRIGGER(_name)	.trigger = NULL
 #endif
 
-#if IS_ENABLED(CONFIG_LEDS_TRIGGER_AUDIO)
+#if IS_ENABLED(CONFIG_SND_CTL_LED)
 #define AUDIO_TRIGGER(_name)	.trigger = _name
 #else
 #define AUDIO_TRIGGER(_name)	.trigger = NULL