From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 598A714A4C7; Wed, 7 May 2025 18:44:42 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1746643482; cv=none; b=q8WnevMDwFfUZWU229A5M443nql/0Ptamz9kJZphvyCpi/ZwJQidYgu2eqxI5Mwp3Ewo57aM9H72Sx170VBuk7JRDEAxMkVNXkm/kDV5bDKNhWpFv9gkW5QqskUG9+/s2wPWTSdNksbGh6SsKLSeUSPeI1EnvQLvDR1UINfizA4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1746643482; c=relaxed/simple; bh=eNvm7mj0a+Ggcf4JGOoBqVgyKqsTrlDuvfAC6PY9EII=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=itK3Wy80OPiE8X6g0gsAS9KV2Ooltk8JJx9lGAHaBpj5fcU6RbPeIXJ8kMEPRj/VYx/lcrTn/0pbjgnDkjwU18mlVzvrf3xZHeG3dK3mlkJhvXRcstybGU5ELWksvP+QKTqOOvx+Z/6POOtWNr30rJdsjn2SWoFoBjtmyTKtj64= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=k5p4Fs8W; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="k5p4Fs8W" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BDA75C4CEE2; Wed, 7 May 2025 18:44:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1746643482; bh=eNvm7mj0a+Ggcf4JGOoBqVgyKqsTrlDuvfAC6PY9EII=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=k5p4Fs8WAiDoPZLSbhAzW+qY4wKOrqrAbmni5GqX8+PCzER15QATUPosDy40eJx2B n899sy3qm2/ILw7eHqqw+BTIbJ+wq0ND+xhIHFVIe+YrgF7fyCep/k7s+g7p+14vtB 62w549D54Hv6FCDag++r0axmLq9bAGIjpESxdVD8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Joachim Priesner , Takashi Iwai Subject: [PATCH 6.1 02/97] ALSA: usb-audio: Add second USB ID for Jabra Evolve 65 headset Date: Wed, 7 May 2025 20:38:37 +0200 Message-ID: <20250507183807.090104012@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250507183806.987408728@linuxfoundation.org> References: <20250507183806.987408728@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Joachim Priesner 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 --- sound/usb/format.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/sound/usb/format.c +++ b/sound/usb/format.c @@ -263,7 +263,8 @@ static int parse_audio_format_rates_v1(s } /* 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);