]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
power: sequencing: pcie-m2: Add PCI ID 0x1103 for WCN6855 Bluetooth
authorWei Deng <wei.deng@oss.qualcomm.com>
Mon, 8 Jun 2026 09:17:01 +0000 (14:47 +0530)
committerBartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Mon, 8 Jun 2026 14:39:43 +0000 (16:39 +0200)
WCN6855 is a Qualcomm Wi-Fi/BT combo chip that uses PCI device ID
0x1103. Add it to pwrseq_m2_pci_ids[] alongside the existing 0x1107
(WCN7850) entry, so that the pwrseq-pcie-m2 driver creates a Bluetooth
serdev device for WCN6855 cards inserted into PCIe M.2 Key E connectors.

Reviewed-by: Manivannan Sadhasivam <mani@kernel.org>
Signed-off-by: Wei Deng <wei.deng@oss.qualcomm.com>
Link: https://patch.msgid.link/20260608091702.3797437-2-wei.deng@oss.qualcomm.com
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
drivers/power/sequencing/pwrseq-pcie-m2.c

index e82821655fc4b6ac24b4d2410ee291fe4a632a22..94c3f4b7ee36e29d0cc7fa06bf4abf399fc57947 100644 (file)
@@ -188,6 +188,8 @@ static int pwrseq_pcie_m2_match(struct pwrseq_device *pwrseq,
 static const struct pci_device_id pwrseq_m2_pci_ids[] = {
        { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x1107),
          .driver_data = (kernel_ulong_t)"qcom,wcn7850-bt" },
+       { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x1103),
+         .driver_data = (kernel_ulong_t)"qcom,wcn6855-bt" },
        { } /* Sentinel */
 };