* [PATCH] ALSA: usb-audio: Fix build with CONFIG_INPUT=n
@ 2025-06-13 8:15 Takashi Iwai
2025-06-13 9:37 ` Cristian Ciocaltea
0 siblings, 1 reply; 3+ messages in thread
From: Takashi Iwai @ 2025-06-13 8:15 UTC (permalink / raw)
To: linux-sound; +Cc: Cristian Ciocaltea
The recent addition of DualSense mixer quirk relies on the input
device handle, and the build can fail if CONFIG_INPUT isn't set.
Put (rather ugly) workarounds to wrap with IS_REACHABLE() for avoiding
the build error.
Fixes: 79d561c4ec04 ("ALSA: usb-audio: Add mixer quirk for Sony DualSense PS5")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202506130733.gnPKw2l3-lkp@intel.com/
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
sound/usb/mixer_quirks.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sound/usb/mixer_quirks.c b/sound/usb/mixer_quirks.c
index a0ffe8b559dc..7cc27ae5512f 100644
--- a/sound/usb/mixer_quirks.c
+++ b/sound/usb/mixer_quirks.c
@@ -532,6 +532,7 @@ static int snd_emu0204_controls_create(struct usb_mixer_interface *mixer)
&snd_emu0204_control, NULL);
}
+#if IS_REACHABLE(CONFIG_INPUT)
/*
* Sony DualSense controller (PS5) jack detection
*
@@ -788,6 +789,7 @@ static int snd_dualsense_controls_create(struct usb_mixer_interface *mixer)
return snd_dualsense_jack_create(mixer, "Headset Mic Jack", false);
}
+#endif /* IS_REACHABLE(CONFIG_INPUT) */
/* ASUS Xonar U1 / U3 controls */
@@ -4331,10 +4333,12 @@ int snd_usb_mixer_apply_create_quirk(struct usb_mixer_interface *mixer)
err = snd_emu0204_controls_create(mixer);
break;
+#if IS_REACHABLE(CONFIG_INPUT)
case USB_ID(0x054c, 0x0ce6): /* Sony DualSense controller (PS5) */
case USB_ID(0x054c, 0x0df2): /* Sony DualSense Edge controller (PS5) */
err = snd_dualsense_controls_create(mixer);
break;
+#endif /* IS_REACHABLE(CONFIG_INPUT) */
case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C400 */
--
2.49.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ALSA: usb-audio: Fix build with CONFIG_INPUT=n
2025-06-13 8:15 [PATCH] ALSA: usb-audio: Fix build with CONFIG_INPUT=n Takashi Iwai
@ 2025-06-13 9:37 ` Cristian Ciocaltea
2025-06-13 9:53 ` Takashi Iwai
0 siblings, 1 reply; 3+ messages in thread
From: Cristian Ciocaltea @ 2025-06-13 9:37 UTC (permalink / raw)
To: Takashi Iwai, linux-sound
Hi Takashi,
On 6/13/25 11:15 AM, Takashi Iwai wrote:
> The recent addition of DualSense mixer quirk relies on the input
> device handle, and the build can fail if CONFIG_INPUT isn't set.
> Put (rather ugly) workarounds to wrap with IS_REACHABLE() for avoiding
> the build error.
>
> Fixes: 79d561c4ec04 ("ALSA: usb-audio: Add mixer quirk for Sony DualSense PS5")
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202506130733.gnPKw2l3-lkp@intel.com/
> Signed-off-by: Takashi Iwai <tiwai@suse.de>
> ---
> sound/usb/mixer_quirks.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/sound/usb/mixer_quirks.c b/sound/usb/mixer_quirks.c
> index a0ffe8b559dc..7cc27ae5512f 100644
> --- a/sound/usb/mixer_quirks.c
> +++ b/sound/usb/mixer_quirks.c
> @@ -532,6 +532,7 @@ static int snd_emu0204_controls_create(struct usb_mixer_interface *mixer)
> &snd_emu0204_control, NULL);
> }
>
> +#if IS_REACHABLE(CONFIG_INPUT)
> /*
> * Sony DualSense controller (PS5) jack detection
> *
> @@ -788,6 +789,7 @@ static int snd_dualsense_controls_create(struct usb_mixer_interface *mixer)
>
> return snd_dualsense_jack_create(mixer, "Headset Mic Jack", false);
> }
> +#endif /* IS_REACHABLE(CONFIG_INPUT) */
>
> /* ASUS Xonar U1 / U3 controls */
>
> @@ -4331,10 +4333,12 @@ int snd_usb_mixer_apply_create_quirk(struct usb_mixer_interface *mixer)
> err = snd_emu0204_controls_create(mixer);
> break;
>
> +#if IS_REACHABLE(CONFIG_INPUT)
> case USB_ID(0x054c, 0x0ce6): /* Sony DualSense controller (PS5) */
> case USB_ID(0x054c, 0x0df2): /* Sony DualSense Edge controller (PS5) */
> err = snd_dualsense_controls_create(mixer);
> break;
> +#endif /* IS_REACHABLE(CONFIG_INPUT) */
>
> case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
> case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C400 */
I've seen the build issue report earlier today and planned to
investigate, but you beat me to it, so thanks for the quick fix!
I reproduced the linker errors on a minimal kernel configuration with
CONFIG_INPUT not being set and I confirm the build passes after applying
the patch.
Reviewed-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ALSA: usb-audio: Fix build with CONFIG_INPUT=n
2025-06-13 9:37 ` Cristian Ciocaltea
@ 2025-06-13 9:53 ` Takashi Iwai
0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2025-06-13 9:53 UTC (permalink / raw)
To: Cristian Ciocaltea; +Cc: Takashi Iwai, linux-sound
On Fri, 13 Jun 2025 11:37:38 +0200,
Cristian Ciocaltea wrote:
>
> Hi Takashi,
>
> On 6/13/25 11:15 AM, Takashi Iwai wrote:
> > The recent addition of DualSense mixer quirk relies on the input
> > device handle, and the build can fail if CONFIG_INPUT isn't set.
> > Put (rather ugly) workarounds to wrap with IS_REACHABLE() for avoiding
> > the build error.
> >
> > Fixes: 79d561c4ec04 ("ALSA: usb-audio: Add mixer quirk for Sony DualSense PS5")
> > Reported-by: kernel test robot <lkp@intel.com>
> > Closes: https://lore.kernel.org/oe-kbuild-all/202506130733.gnPKw2l3-lkp@intel.com/
> > Signed-off-by: Takashi Iwai <tiwai@suse.de>
> > ---
> > sound/usb/mixer_quirks.c | 4 ++++
> > 1 file changed, 4 insertions(+)
> >
> > diff --git a/sound/usb/mixer_quirks.c b/sound/usb/mixer_quirks.c
> > index a0ffe8b559dc..7cc27ae5512f 100644
> > --- a/sound/usb/mixer_quirks.c
> > +++ b/sound/usb/mixer_quirks.c
> > @@ -532,6 +532,7 @@ static int snd_emu0204_controls_create(struct usb_mixer_interface *mixer)
> > &snd_emu0204_control, NULL);
> > }
> >
> > +#if IS_REACHABLE(CONFIG_INPUT)
> > /*
> > * Sony DualSense controller (PS5) jack detection
> > *
> > @@ -788,6 +789,7 @@ static int snd_dualsense_controls_create(struct usb_mixer_interface *mixer)
> >
> > return snd_dualsense_jack_create(mixer, "Headset Mic Jack", false);
> > }
> > +#endif /* IS_REACHABLE(CONFIG_INPUT) */
> >
> > /* ASUS Xonar U1 / U3 controls */
> >
> > @@ -4331,10 +4333,12 @@ int snd_usb_mixer_apply_create_quirk(struct usb_mixer_interface *mixer)
> > err = snd_emu0204_controls_create(mixer);
> > break;
> >
> > +#if IS_REACHABLE(CONFIG_INPUT)
> > case USB_ID(0x054c, 0x0ce6): /* Sony DualSense controller (PS5) */
> > case USB_ID(0x054c, 0x0df2): /* Sony DualSense Edge controller (PS5) */
> > err = snd_dualsense_controls_create(mixer);
> > break;
> > +#endif /* IS_REACHABLE(CONFIG_INPUT) */
> >
> > case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
> > case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C400 */
>
> I've seen the build issue report earlier today and planned to
> investigate, but you beat me to it, so thanks for the quick fix!
>
> I reproduced the linker errors on a minimal kernel configuration with
> CONFIG_INPUT not being set and I confirm the build passes after applying
> the patch.
>
> Reviewed-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
Thanks for confirmation. Now queued.
Takashi
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-13 9:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-13 8:15 [PATCH] ALSA: usb-audio: Fix build with CONFIG_INPUT=n Takashi Iwai
2025-06-13 9:37 ` Cristian Ciocaltea
2025-06-13 9:53 ` Takashi Iwai
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.