diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2017-01-02 10:23:23 -0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2017-02-16 17:36:31 +0100 |
commit | e27ee2b16bad0c2ae648f5ee67d0555e0cd799d6 (patch) | |
tree | 1978a4645da51aa38d6b91c908e0dd5a6c9fc77c /drivers/bluetooth | |
parent | 441ad62d6c3f131f1dbd7dcdd9cbe3f74dbd8501 (diff) | |
download | linux-e27ee2b16bad0c2ae648f5ee67d0555e0cd799d6.tar.gz linux-e27ee2b16bad0c2ae648f5ee67d0555e0cd799d6.tar.bz2 linux-e27ee2b16bad0c2ae648f5ee67d0555e0cd799d6.zip |
Bluetooth: btqcomsmd: Allow driver to build if COMPILE_TEST is enabled
The driver only has runtime but no build time dependency with QCOM_SMD &&
QCOM_WCNSS_CTRL. So it can be built for testing purposes if COMPILE_TEST
option is enabled.
This is useful to have more build coverage and make sure that the driver
is not affected by changes that could cause build regressions.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r-- | drivers/bluetooth/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/Kconfig b/drivers/bluetooth/Kconfig index 3cc9bff9d99d..c2c14a12713b 100644 --- a/drivers/bluetooth/Kconfig +++ b/drivers/bluetooth/Kconfig @@ -344,7 +344,7 @@ config BT_WILINK config BT_QCOMSMD tristate "Qualcomm SMD based HCI support" - depends on QCOM_SMD && QCOM_WCNSS_CTRL + depends on (QCOM_SMD && QCOM_WCNSS_CTRL) || COMPILE_TEST select BT_QCA help Qualcomm SMD based HCI driver. |