diff options
author | Brian Norris <computersforpeace@gmail.com> | 2015-10-12 20:35:16 (GMT) |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-10-19 16:50:45 (GMT) |
commit | d26a22d06708ba5a181003d44fcd6d0885cec8d4 (patch) | |
tree | 2d0b590847c15033547e5ce73aec55e23fb763d2 /drivers/mtd | |
parent | a5c603a22bff27f3aea7e747af4229d75278f3ff (diff) | |
download | linux-d26a22d06708ba5a181003d44fcd6d0885cec8d4.tar.xz |
mtd: fsl-quadspi: allow building for other ARCHes with COMPILE_TEST
This driver doesn't actually need ARCH_MXC to compile. Relax the
constraints.
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Acked-by: Han xu <han.xu@freescale.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/spi-nor/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig index 89bf4c1..2fe2a7e 100644 --- a/drivers/mtd/spi-nor/Kconfig +++ b/drivers/mtd/spi-nor/Kconfig @@ -23,7 +23,8 @@ config MTD_SPI_NOR_USE_4K_SECTORS config SPI_FSL_QUADSPI tristate "Freescale Quad SPI controller" - depends on ARCH_MXC + depends on ARCH_MXC || COMPILE_TEST + depends on HAS_IOMEM help This enables support for the Quad SPI controller in master mode. This controller does not support generic SPI. It only supports |