aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoachim Priesner <[email protected]>2025-04-28 05:36:06 +0000
committerTakashi Iwai <[email protected]>2025-04-28 08:00:51 +0000
commit1149719442d28c96dc63cad432b5a6db7c300e1a (patch)
tree2a0aaf86f4d1f8c6df5678d55ddb4fa2c04d64e5
parentALSA: hda/realtek: Add quirk for HP Spectre x360 15-df1xxx (diff)
downloadkernel-1149719442d28c96dc63cad432b5a6db7c300e1a.tar.gz
kernel-1149719442d28c96dc63cad432b5a6db7c300e1a.zip
ALSA: usb-audio: Add second USB ID for Jabra Evolve 65 headset
There seem to be multiple USB device IDs used for these; the one I have reports as 0b0e:030c when powered on. (When powered off, it reports as 0b0e:0311.) Signed-off-by: Joachim Priesner <[email protected]> Cc: <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
-rw-r--r--sound/usb/format.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/usb/format.c b/sound/usb/format.c
index 9d32b21a5fbb..0ba4641a0eb1 100644
--- a/sound/usb/format.c
+++ b/sound/usb/format.c
@@ -260,7 +260,8 @@ static int parse_audio_format_rates_v1(struct snd_usb_audio *chip, struct audiof
}
/* Jabra Evolve 65 headset */
- if (chip->usb_id == USB_ID(0x0b0e, 0x030b)) {
+ if (chip->usb_id == USB_ID(0x0b0e, 0x030b) ||
+ chip->usb_id == USB_ID(0x0b0e, 0x030c)) {
/* only 48kHz for playback while keeping 16kHz for capture */
if (fp->nr_rates != 1)
return set_fixed_rate(fp, 48000, SNDRV_PCM_RATE_48000);