Commit 93d39b7e authored by Kai-Heng Feng's avatar Kai-Heng Feng Committed by Greg Kroah-Hartman

ALSA: usb-audio: Add vendor, product and profile name for HP Thunderbolt Dock

commit 0c5086f5 upstream.

The HP Thunderbolt Dock has two separate USB devices, one is for speaker
and one is for headset. Add names for them so userspace can apply UCM
settings.
Signed-off-by: default avatarKai-Heng Feng <kai.heng.feng@canonical.com>
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20200608062630.10806-1-kai.heng.feng@canonical.comSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4ee198df
......@@ -39,6 +39,26 @@
.idProduct = prod, \
.bInterfaceClass = USB_CLASS_VENDOR_SPEC
/* HP Thunderbolt Dock Audio Headset */
{
USB_DEVICE(0x03f0, 0x0269),
.driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
.vendor_name = "HP",
.product_name = "Thunderbolt Dock Audio Headset",
.profile_name = "HP-Thunderbolt-Dock-Audio-Headset",
.ifnum = QUIRK_NO_INTERFACE
}
},
/* HP Thunderbolt Dock Audio Module */
{
USB_DEVICE(0x03f0, 0x0567),
.driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
.vendor_name = "HP",
.product_name = "Thunderbolt Dock Audio Module",
.profile_name = "HP-Thunderbolt-Dock-Audio-Module",
.ifnum = QUIRK_NO_INTERFACE
}
},
/* FTDI devices */
{
USB_DEVICE(0x0403, 0xb8d8),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment