[PATCH] soc: qcom: ipa: build IPA when COMPILE_TEST is enabled

From: Alex Elder
Date: Fri Mar 13 2020 - 08:11:36 EST


Make CONFIG_QCOM_IPA optionally dependent on CONFIG_COMPILE_TEST.

Suggested-by: Jakub Kicinski <kuba@xxxxxxxxxx>
Signed-off-by: Alex Elder <elder@xxxxxxxxxx>
---

David, this implements a suggestion made by Jakub Kicinski. I tested
it with GCC 9.2.1 for x86 and found no errors or warnings in the IPA
code. It is the last IPA change I plan to make for v5.7.

Once reviewed and found acceptable, it should go through net-next.

Thanks.

-Alex

drivers/net/ipa/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ipa/Kconfig b/drivers/net/ipa/Kconfig
index b8cb7cadbf75..bcab7e52d4e6 100644
--- a/drivers/net/ipa/Kconfig
+++ b/drivers/net/ipa/Kconfig
@@ -1,6 +1,6 @@
config QCOM_IPA
tristate "Qualcomm IPA support"
- depends on ARCH_QCOM && 64BIT && NET
+ depends on (ARCH_QCOM || COMPILE_TEST) && 64BIT && NET
select QCOM_QMI_HELPERS
select QCOM_MDT_LOADER
default QCOM_Q6V5_COMMON
--
2.20.1