Re: [PATCH v2 1/1] ALSA: usb: Add support for Reloop Jockey 3 DJ controllers

From: Julian Braha

Date: Thu Jun 18 2026 - 06:53:45 EST


Hi Frank,

On 6/17/26 21:39, Frank van de Pol wrote:

> +source "sound/usb/jockey3/Kconfig"
>
> endif # SND_USB
>
> diff --git a/sound/usb/Makefile b/sound/usb/Makefile
> index e62794a87e73..1f045c00dbc9 100644
> --- a/sound/usb/Makefile
> +++ b/sound/usb/Makefile
> @@ -37,3 +37,4 @@ obj-$(CONFIG_SND_USB_US122L) += snd-usbmidi-lib.o
>
> obj-$(CONFIG_SND) += misc/ usx2y/ caiaq/ 6fire/ hiface/ bcd2000/ qcom/
> obj-$(CONFIG_SND_USB_LINE6) += line6/
> +obj-$(CONFIG_SND_USB_JOCKEY3) += jockey3/
> diff --git a/sound/usb/jockey3/Kconfig b/sound/usb/jockey3/Kconfig
> new file mode 100644
> index 000000000000..a1ac80f04450
> --- /dev/null
> +++ b/sound/usb/jockey3/Kconfig
> @@ -0,0 +1,19 @@
> +# SPDX-License-Identifier: GPL-2.0-only
> +config SND_USB_JOCKEY3
> + tristate "Reloop Jockey 3 support"
> + default m
> + depends on SND_USB && USB
> + select SND_PCM
> + select SND_RAWMIDI

The dependency on SND_USB is unnecessary here, since the:
'source "sound/usb/jockey3/Kconfig"'
is already inside of an 'if SND_USB' so every config option in that file
depends on SND_USB.

- Julian Braha