Message ID | 20200804010616.3399256-1-cujomalainey@chromium.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | snd: usb: add startech usb audio dock name | expand |
On Tue, 04 Aug 2020 03:06:16 +0200, Curtis Malainey wrote: > > The dock sold from startech (PID: ICUSBAUDIO7D) has no friendly name > and shows up currently as "USB Sound Device" in ALSA. > > Signed-off-by: Curtis Malainey <cujomalainey@chromium.org> Thanks, applied. Takashi
diff --git a/sound/usb/quirks-table.h b/sound/usb/quirks-table.h index 9092cc0aa8072..fef06836115c1 100644 --- a/sound/usb/quirks-table.h +++ b/sound/usb/quirks-table.h @@ -3252,11 +3252,15 @@ AU0828_DEVICE(0x2040, 0x7270, "Hauppauge", "HVR-950Q"), } }, +/* + * The original product_name is "USB Sound Device", however this name + * is also used by the CM106 based cards, so make it unique. + */ +{ + USB_DEVICE(0x0d8c, 0x0102), + QUIRK_RENAME_DEVICE(NULL, "ICUSBAUDIO7D") +}, { - /* - * The original product_name is "USB Sound Device", however this name - * is also used by the CM106 based cards, so make it unique. - */ USB_DEVICE(0x0d8c, 0x0103), QUIRK_RENAME_DEVICE(NULL, "Audio Advantage MicroII") },
The dock sold from startech (PID: ICUSBAUDIO7D) has no friendly name and shows up currently as "USB Sound Device" in ALSA. Signed-off-by: Curtis Malainey <cujomalainey@chromium.org> --- sound/usb/quirks-table.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-)