mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ALSA: usb-audio: Add quirk flags for Behringer UV1
@ 2026-09-04 17:23 Nick Pegg
  2026-09-06  8:06 ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Nick Pegg @ 2026-09-04 17:23 UTC (permalink / raw)
  To: perex, tiwai; +Cc: linux-sound, linux-kernel

The Behringer UV1 is a microphone audio processor with a USB audio
interface, which experiences periodic stutters unless implicit_fb is used.

This seems to be a similar device to the Behringer UMC series, so I
copied the quirks from those. I've confirmed that my own UV1 works great
with these flags set.

Signed-off-by: Nick Pegg <nick@nickpegg.com>
---
sound/usb/quirks.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
index 4d2957e62fbd..5b27659d3eb7 100644
--- a/sound/usb/quirks.c
+++ b/sound/usb/quirks.c
@@ -2388,6 +2388,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
                   QUIRK_FLAG_PLAYBACK_FIRST | QUIRK_FLAG_GENERIC_IMPLICIT_FB),
        DEVICE_FLG(0x1397, 0x050c, /* Behringer Flow 8 */
                   QUIRK_FLAG_IFB_SILENCE_ON_EMPTY),
+       DEVICE_FLG(0x1397, 0x0510, /* Behringer UV1 */
+                  QUIRK_FLAG_PLAYBACK_FIRST | QUIRK_FLAG_GENERIC_IMPLICIT_FB),
        DEVICE_FLG(0x13e5, 0x0001, /* Serato Phono */
                   QUIRK_FLAG_IGNORE_CTL_ERROR),
        DEVICE_FLG(0x152a, 0x880a, /* NeuralDSP Quad Cortex */
--
2.55.0

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ALSA: usb-audio: Add quirk flags for Behringer UV1
  2026-09-04 17:23 [PATCH] ALSA: usb-audio: Add quirk flags for Behringer UV1 Nick Pegg
@ 2026-09-06  8:06 ` Takashi Iwai
  2026-09-06 15:55   ` [PATCH v2] " Nick Pegg
  0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2026-09-06  8:06 UTC (permalink / raw)
  To: Nick Pegg; +Cc: perex, tiwai, linux-sound, linux-kernel

On Fri, 04 Sep 2026 19:23:15 +0200,
Nick Pegg wrote:
> 
> The Behringer UV1 is a microphone audio processor with a USB audio
> interface, which experiences periodic stutters unless implicit_fb is used.
> 
> This seems to be a similar device to the Behringer UMC series, so I
> copied the quirks from those. I've confirmed that my own UV1 works great
> with these flags set.
> 
> Signed-off-by: Nick Pegg <nick@nickpegg.com>

The patch can't be cleanly applied, likely due to your mailer breaking
tabs and spaces.  Could you fix your mailer setup and resubmit?
At best submit via git-send-email.


thanks,

Takashi

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2] ALSA: usb-audio: Add quirk flags for Behringer UV1
  2026-09-06  8:06 ` Takashi Iwai
@ 2026-09-06 15:55   ` Nick Pegg
  2026-09-07  7:38     ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Nick Pegg @ 2026-09-06 15:55 UTC (permalink / raw)
  To: tiwai; +Cc: linux-kernel, linux-sound, perex, Nick Pegg

The Behringer UV1 is a microphone audio processor with a USB audio
interface, which experiences periodic stutters unless implicit_fb is used.

This seems to be a similar device to the Behringer UMC series, so I
copied the quirks from those. I've confirmed that my own UV1 works great
with these flags set.

Signed-off-by: Nick Pegg <nick@nickpegg.com>
---
v2: Same change as before, but using git-send-email this time since my
mailer mangled v1.


 sound/usb/quirks.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
index 4d2957e62fbd..5b27659d3eb7 100644
--- a/sound/usb/quirks.c
+++ b/sound/usb/quirks.c
@@ -2388,6 +2388,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
 		   QUIRK_FLAG_PLAYBACK_FIRST | QUIRK_FLAG_GENERIC_IMPLICIT_FB),
 	DEVICE_FLG(0x1397, 0x050c, /* Behringer Flow 8 */
 		   QUIRK_FLAG_IFB_SILENCE_ON_EMPTY),
+	DEVICE_FLG(0x1397, 0x0510, /* Behringer UV1 */
+		   QUIRK_FLAG_PLAYBACK_FIRST | QUIRK_FLAG_GENERIC_IMPLICIT_FB),
 	DEVICE_FLG(0x13e5, 0x0001, /* Serato Phono */
 		   QUIRK_FLAG_IGNORE_CTL_ERROR),
 	DEVICE_FLG(0x152a, 0x880a, /* NeuralDSP Quad Cortex */
--
2.55.0

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] ALSA: usb-audio: Add quirk flags for Behringer UV1
  2026-09-06 15:55   ` [PATCH v2] " Nick Pegg
@ 2026-09-07  7:38     ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2026-09-07  7:38 UTC (permalink / raw)
  To: Nick Pegg; +Cc: tiwai, linux-kernel, linux-sound, perex

On Sun, 06 Sep 2026 17:55:37 +0200,
Nick Pegg wrote:
> 
> The Behringer UV1 is a microphone audio processor with a USB audio
> interface, which experiences periodic stutters unless implicit_fb is used.
> 
> This seems to be a similar device to the Behringer UMC series, so I
> copied the quirks from those. I've confirmed that my own UV1 works great
> with these flags set.
> 
> Signed-off-by: Nick Pegg <nick@nickpegg.com>

Applied now.  Thanks.


Takashi

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-09-07  7:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-04 17:23 [PATCH] ALSA: usb-audio: Add quirk flags for Behringer UV1 Nick Pegg
2026-09-06  8:06 ` Takashi Iwai
2026-09-06 15:55   ` [PATCH v2] " Nick Pegg
2026-09-07  7:38     ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®