diff options
author | Alex Dewar <alex.dewar90@gmail.com> | 2020-09-04 17:37:10 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-09-07 19:04:23 +0100 |
commit | 2abaad678575acd54e9939e1174becd82ecc884b (patch) | |
tree | 7b011a8f6d5f35391ebd71ddaaa91c49d3eede4e /drivers | |
parent | 043ebcf3204ca1a0ce0d03cb7dc6e0d63d2cf512 (diff) |
spi: qup: Allow for compile-testing on !ARM
There seems no reason to restrict testing to ARM, so remove this
constraint to improve test coverage.
Build-tested with allyesconfig on x86.
Signed-off-by: Alex Dewar <alex.dewar90@gmail.com>
Link: https://lore.kernel.org/r/20200904163709.110975-1-alex.dewar90@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/spi/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index c6ea760ea5f0..f705b0484f5e 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -637,7 +637,7 @@ config SPI_QCOM_QSPI config SPI_QUP tristate "Qualcomm SPI controller with QUP interface" - depends on ARCH_QCOM || (ARM && COMPILE_TEST) + depends on ARCH_QCOM || COMPILE_TEST help Qualcomm Universal Peripheral (QUP) core is an AHB slave that provides a common data path (an output FIFO and an input FIFO) |