From: Joachim Priesner Date: Mon, 28 Apr 2025 05:36:06 +0000 (+0200) Subject: ALSA: usb-audio: Add second USB ID for Jabra Evolve 65 headset X-Git-Tag: v5.10.238~266 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f21ab478d22756584c63761417d0006745245cb9;p=thirdparty%2Fkernel%2Fstable.git ALSA: usb-audio: Add second USB ID for Jabra Evolve 65 headset commit 1149719442d28c96dc63cad432b5a6db7c300e1a upstream. 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 Cc: Link: https://patch.msgid.link/20250428053606.9237-1-joachim.priesner@web.de Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- diff --git a/sound/usb/format.c b/sound/usb/format.c index 552094012c49e..593f1acd8fd33 100644 --- a/sound/usb/format.c +++ b/sound/usb/format.c @@ -251,7 +251,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);