]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ALSA: usb-audio: Add second USB ID for Jabra Evolve 65 headset
authorJoachim Priesner <joachim.priesner@web.de>
Mon, 28 Apr 2025 05:36:06 +0000 (07:36 +0200)
committerTakashi Iwai <tiwai@suse.de>
Mon, 28 Apr 2025 08:00:51 +0000 (10:00 +0200)
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 <joachim.priesner@web.de>
Cc: <stable@vger.kernel.org>
Link: https://patch.msgid.link/20250428053606.9237-1-joachim.priesner@web.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/format.c

index 9d32b21a5fbb0264cd2ab43d7a75c4c07922529a..0ba4641a0eb11d57c3297dbcbfa5f7d08450369b 100644 (file)
@@ -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);