aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJanaki Ramaiah Thota <quic_janathot@quicinc.com>2025-02-20 16:59:45 +0530
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2025-03-25 12:41:19 -0400
commit852cfdc7a5a5af54358325c1e0f490cc178d9664 (patch)
tree00a3aecb1e97695a41ba11d72c93675c20bb5820
parentBluetooth: btusb: Add 2 HWIDs for MT7922 (diff)
downloadwireguard-linux-852cfdc7a5a5af54358325c1e0f490cc178d9664.tar.xz
wireguard-linux-852cfdc7a5a5af54358325c1e0f490cc178d9664.zip
Bluetooth: hci_qca: use the power sequencer for wcn6750
Older boards are having entry "enable-gpios" in dts, we can safely assume latest boards which are supporting PMU node enrty will support power sequencer. Signed-off-by: Janaki Ramaiah Thota <quic_janathot@quicinc.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Diffstat (limited to '')
-rw-r--r--drivers/bluetooth/hci_qca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c
index 0ac2168f1dc4..d2fd08aceb17 100644
--- a/drivers/bluetooth/hci_qca.c
+++ b/drivers/bluetooth/hci_qca.c
@@ -2359,6 +2359,7 @@ static int qca_serdev_probe(struct serdev_device *serdev)
switch (qcadev->btsoc_type) {
case QCA_WCN6855:
case QCA_WCN7850:
+ case QCA_WCN6750:
if (!device_property_present(&serdev->dev, "enable-gpios")) {
/*
* Backward compatibility with old DT sources. If the
@@ -2378,7 +2379,6 @@ static int qca_serdev_probe(struct serdev_device *serdev)
case QCA_WCN3990:
case QCA_WCN3991:
case QCA_WCN3998:
- case QCA_WCN6750:
qcadev->bt_power->dev = &serdev->dev;
err = qca_init_regulators(qcadev->bt_power, data->vregs,
data->num_vregs);