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 E72E325C708; Thu, 17 Apr 2025 18:22:22 +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=1744914143; cv=none; b=tFHDVAoWjnDQrFWz/FZsZMgh3FRytdIjV+XgkGwJ6Qr8+0POdvj6yXUZ11uKKu415MosRgaLnI8UtG4fJuSY7dWonL/LJ7IsruttTZckNbsDTd2rKw5vx82eQtPeNSJp/TicDbk+ECEYwEFvdLAvBByaN6xOWyBqcDN/jhuMaVg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744914143; c=relaxed/simple; bh=+BtQKPmIxJztQa7qDyRgflI66DeFeuOz/O2DF9+5PhM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=BFQgRAQKwIZioU+YEpplTDk2N+15EZmj1Py4vk3MCAYys81vZ2k2ua07SONLKRMkSe2gQgRs7Bbzpq7s/e4YnLzqCVrSnDePaLKRtYoUycwTybOjOBr+82EBb4Vq7rE8sFjBSfqaaN1IIU/YMgSPoBbR/B3mOp4tKfdiI8YqyLw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=2RYffNxP; 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="2RYffNxP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 72CFFC4CEE4; Thu, 17 Apr 2025 18:22:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744914142; bh=+BtQKPmIxJztQa7qDyRgflI66DeFeuOz/O2DF9+5PhM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=2RYffNxPo25qXuEwVhz3IBtFMHrO+X6pgtgyx4ZNI++nETVbXHj8Tv7vvBTVyNSWE qB4Xc+zzrAE09lq4NeZJyzIRlE4PVj6/R3Z7CS3EFR1aleN116C1hYj+wFpHsCy5Wv G0sZz3LwSSNMTYgX5//S5TeTvaBfLcYefxeDF1fM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Kiran K , Luiz Augusto von Dentz , Sasha Levin Subject: [PATCH 6.13 121/414] Bluetooth: btintel_pcie: Add device id of Whale Peak Date: Thu, 17 Apr 2025 19:47:59 +0200 Message-ID: <20250417175116.302948498@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250417175111.386381660@linuxfoundation.org> References: <20250417175111.386381660@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.13-stable review patch. If anyone has any objections, please let me know. ------------------ From: Kiran K [ Upstream commit 6b8c05e52d66e4fe4ab1df4c6e15f339ecd9aa51 ] Add device of Whale Peak. Output of sudo lspci -v -s 00:14.7: 00:14.7 Bluetooth: Intel Corporation Device e476 Subsystem: Intel Corporation Device 0011 Flags: bus master, fast devsel, latency 0, IRQ 16, IOMMU group 11 Memory at 11011c30000 (64-bit, non-prefetchable) [size=16K] Capabilities: [c8] Power Management version 3 Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+ Capabilities: [40] Express Root Complex Integrated Endpoint, MSI 00 Capabilities: [80] MSI-X: Enable+ Count=32 Masked- Capabilities: [100] Latency Tolerance Reporting Kernel driver in use: btintel_pcie Kernel modules: btintel_pcie Signed-off-by: Kiran K Signed-off-by: Luiz Augusto von Dentz Signed-off-by: Sasha Levin --- drivers/bluetooth/btintel_pcie.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/bluetooth/btintel_pcie.c b/drivers/bluetooth/btintel_pcie.c index 091ffe3e14954..6130854b6658a 100644 --- a/drivers/bluetooth/btintel_pcie.c +++ b/drivers/bluetooth/btintel_pcie.c @@ -36,6 +36,7 @@ /* Intel Bluetooth PCIe device id table */ static const struct pci_device_id btintel_pcie_table[] = { { BTINTEL_PCI_DEVICE(0xA876, PCI_ANY_ID) }, + { BTINTEL_PCI_DEVICE(0xE476, PCI_ANY_ID) }, { 0 } }; MODULE_DEVICE_TABLE(pci, btintel_pcie_table); -- 2.39.5