Message ID | 20200108090804.22889-3-rjliao@codeaurora.org (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [v2,1/3] Bluetooth: hci_qca: Add qca_power_on() API to support both wcn399x and Rome power up | expand |
diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c index 8fc8c9bce9ee..7cc82d048558 100644 --- a/drivers/bluetooth/hci_qca.c +++ b/drivers/bluetooth/hci_qca.c @@ -1579,7 +1579,7 @@ static int qca_setup(struct hci_uart *hu) set_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks); set_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks); hu->hdev->shutdown = qca_power_off; - ret = qca_wcn3990_init(hu); + ret = qca_power_on(hdev); if (ret) return ret;
This patch replaces wcn399x power on with unified API qca_power_on(), which supports both wcn399x and Rome. Signed-off-by: Rocky Liao <rjliao@codeaurora.org> --- Changes in v2: Added this patch drivers/bluetooth/hci_qca.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)