From 0413a88d6b0455f9f4993dd0cada804c305c9bf0 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Thu, 15 Jan 2026 16:02:06 +0100 Subject: [PATCH] USB-Audio: Add support for the SSL 2 MK II and SSL2+ MK II Closes: https://github.com/alsa-project/alsa-ucm-conf/pull/681 Signed-off-by: Jaroslav Kysela --- ucm2/USB-Audio/USB-Audio.conf | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/ucm2/USB-Audio/USB-Audio.conf b/ucm2/USB-Audio/USB-Audio.conf index b6af583..0841af6 100644 --- a/ucm2/USB-Audio/USB-Audio.conf +++ b/ucm2/USB-Audio/USB-Audio.conf @@ -592,9 +592,11 @@ If.teufel-cage-pro { If.ssl2 { Condition { - Type String - Haystack "${CardComponents}" - Needle "USB31e9:0001" + Type RegexMatch + String "${CardComponents}" + # 0001 MK I + # 0008 MK II + Regex "USB31e9:000[18]" } True.Define { ProfileName "SolidStateLabs/SSL2" @@ -603,9 +605,11 @@ If.ssl2 { If.ssl2plus { Condition { - Type String - Haystack "${CardComponents}" - Needle "USB31e9:0002" + Type RegexMatch + String "${CardComponents}" + # 0002 MK I + # 0009 MK II + Regex "USB31e9:000[29]" } True.Define { ProfileName "SolidStateLabs/SSL2Plus" -- 2.47.3