@@ -378,6 +378,13 @@ config BT_QCOMSMD
Say Y here to compile support for HCI over Qualcomm SMD into the
kernel or say M to compile as a module.
+config BT_QCOMSMD_HACK
+ bool "Don't forcefully hook hci setup()"
+ default n
+ help
+ Don't forcefully hook hci setup() in case a BD address wasn't
+ assigned to hcidev during qcomsmd_probe().
+
config BT_HCIRSI
tristate
help
@@ -190,7 +190,12 @@ static int btqcomsmd_probe(struct platform_device *pdev)
hdev->open = btqcomsmd_open;
hdev->close = btqcomsmd_close;
hdev->send = btqcomsmd_send;
+#ifdef CONFIG_BT_QCOMSMD_HACK
+ if (bacmp(&btq->bdaddr, BDADDR_ANY))
+ hdev->setup = btqcomsmd_setup;
+#else
hdev->setup = btqcomsmd_setup;
+#endif
hdev->set_bdaddr = qca_set_bdaddr_rome;
ret = hci_register_dev(hdev);