Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 695fcb61 authored by Emmanuel Pescosta's avatar Emmanuel Pescosta Committed by Greg Kroah-Hartman
Browse files

ALSA: usb-audio: Add registration quirk for Kingston HyperX Cloud Alpha S



[ Upstream commit fd60e0683e8e9107e09cd2e4798f3e27e85d2705 ]

Similar to the Kingston HyperX AMP, the Kingston HyperX Cloud
Alpha S (0951:16d8) uses two interfaces, but only the second
interface contains the capture stream. This patch delays the
registration until the second interface appears.

Signed-off-by: default avatarEmmanuel Pescosta <emmanuelpescosta099@gmail.com>
Link: https://lore.kernel.org/r/20200404153843.9288-1-emmanuelpescosta099@gmail.com


Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 18f2cbb2
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -1801,6 +1801,7 @@ struct registration_quirk {


static const struct registration_quirk registration_quirks[] = {
static const struct registration_quirk registration_quirks[] = {
	REG_QUIRK_ENTRY(0x0951, 0x16d8, 2),	/* Kingston HyperX AMP */
	REG_QUIRK_ENTRY(0x0951, 0x16d8, 2),	/* Kingston HyperX AMP */
	REG_QUIRK_ENTRY(0x0951, 0x16ed, 2),	/* Kingston HyperX Cloud Alpha S */
	{ 0 }					/* terminator */
	{ 0 }					/* terminator */
};
};