[PATCH v4] ALSA: usb-audio: Fix quirk entry placement for PreSonus AudioBox USB

Abhinav Mahadevan posted 1 patch 1 month, 2 weeks ago
sound/usb/quirks-table.h | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
[PATCH v4] ALSA: usb-audio: Fix quirk entry placement for PreSonus AudioBox USB
Posted by Abhinav Mahadevan 1 month, 2 weeks ago
The quirk entry for PreSonus AudioBox USB was mistakenly placed inside
a disabled #if 0 block. Move it to the correct position after the

Fixes: 34fe4a9df247 ("ALSA: usb-audio: Add quirk for PreSonus AudioBox USB")
Signed-off-by: Abhinav Mahadevan <abhi220204@gmail.com>
---

v4: Use correct upstream commit hash in Fixes tag (12 characters).
Rewrite patch description to accurately describe this patch  - correcting 
the position of the entry from inside a disabled #if 0 block to after the 
#endif /* disabled */.

 sound/usb/quirks-table.h | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sound/usb/quirks-table.h b/sound/usb/quirks-table.h
index 803e03d4d..4e9cfff40 100644
--- a/sound/usb/quirks-table.h
+++ b/sound/usb/quirks-table.h
@@ -2652,6 +2652,9 @@ YAMAHA_DEVICE(0x7010, "UB99"),
 		}
 	}
 },
+
+#endif /* disabled */
+
 {
 	/*
 	 * The AudioBox USB advertises S24_3LE as the only supported format
@@ -2700,7 +2703,6 @@ YAMAHA_DEVICE(0x7010, "UB99"),
 		}
 	}
 },
-#endif /* disabled */
 
 {
 	/*
-- 
2.43.0
Re: [PATCH v4] ALSA: usb-audio: Fix quirk entry placement for PreSonus AudioBox USB
Posted by Takashi Iwai 1 month, 2 weeks ago
On Tue, 28 Apr 2026 17:50:00 +0200,
Abhinav Mahadevan wrote:
> 
> The quirk entry for PreSonus AudioBox USB was mistakenly placed inside
> a disabled #if 0 block. Move it to the correct position after the
> 
> Fixes: 34fe4a9df247 ("ALSA: usb-audio: Add quirk for PreSonus AudioBox USB")
> Signed-off-by: Abhinav Mahadevan <abhi220204@gmail.com>

Applied now.  Thanks.


Takashi