spi: Allow selecting BCM2835 SPI controllers on ARCH_BRCMSTB
authorFlorian Fainelli <f.fainelli@gmail.com>
Thu, 9 May 2019 20:36:00 +0000 (13:36 -0700)
committerMark Brown <broonie@kernel.org>
Mon, 13 May 2019 12:14:26 +0000 (13:14 +0100)
ARCH_BRCMSTB platforms have the BCM2835 SPI controllers (normal and
auxiliary), allow selecting the two drivers on such platforms.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/Kconfig

index 0fba8f400c592e8837daabc7f94da6d81146bc47..3ee152feee2bd308cf5a7fb00110ddbefcb75bf4 100644 (file)
@@ -119,7 +119,7 @@ config SPI_AXI_SPI_ENGINE
 config SPI_BCM2835
        tristate "BCM2835 SPI controller"
        depends on GPIOLIB
-       depends on ARCH_BCM2835 || COMPILE_TEST
+       depends on ARCH_BCM2835 || ARCH_BRCMSTB || COMPILE_TEST
        help
          This selects a driver for the Broadcom BCM2835 SPI master.
 
@@ -130,7 +130,7 @@ config SPI_BCM2835
 
 config SPI_BCM2835AUX
        tristate "BCM2835 SPI auxiliary controller"
-       depends on (ARCH_BCM2835 && GPIOLIB) || COMPILE_TEST
+       depends on ((ARCH_BCM2835 || ARCH_BRCMSTB) && GPIOLIB) || COMPILE_TEST
        help
          This selects a driver for the Broadcom BCM2835 SPI aux master.