diff options
author | Wolfram Sang <wsa@kernel.org> | 2022-02-12 22:47:07 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-03-08 21:12:31 +0300 |
commit | f6fbf18d156cf1b84d4b5cfb6d7bef306e39ce9f (patch) | |
tree | 0d03f41b26e43b8b51c3ed85a488e6a295bdacdb | |
parent | d65d187b51b626595b2958f27cc432ce6ca5e3d1 (diff) | |
download | linux-f6fbf18d156cf1b84d4b5cfb6d7bef306e39ce9f.tar.xz |
i2c: qup: allow COMPILE_TEST
[ Upstream commit 5de717974005fcad2502281e9f82e139ca91f4bb ]
Driver builds fine with COMPILE_TEST. Enable it for wider test coverage
and easier maintenance.
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | drivers/i2c/busses/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig index f76aaf955936..fea403431f22 100644 --- a/drivers/i2c/busses/Kconfig +++ b/drivers/i2c/busses/Kconfig @@ -921,7 +921,7 @@ config I2C_QCOM_GENI config I2C_QUP tristate "Qualcomm QUP based I2C controller" - depends on ARCH_QCOM + depends on ARCH_QCOM || COMPILE_TEST help If you say yes to this option, support will be included for the built-in I2C interface on the Qualcomm SoCs. |