diff options
author | Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com> | 2010-01-22 10:08:31 -0700 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-01-22 10:08:31 -0700 |
commit | 212b3c8b8ab94d983c2e0ee1821f17dd5b4e0859 (patch) | |
tree | 9906d13e928c42be7b01ab144342b2188c3dea62 /drivers/spi | |
parent | 8ca8d15ade201b7723fa386eadcce2044463ff56 (diff) | |
download | talos-op-linux-212b3c8b8ab94d983c2e0ee1821f17dd5b4e0859.tar.gz talos-op-linux-212b3c8b8ab94d983c2e0ee1821f17dd5b4e0859.zip |
spi/dw_spi: Fix dw_spi_mmio to depend on HAVE_CLK
dw_spi_mmio is dependent on the clock framework. This marks it as such
in Kconfig.
Signed-off-by: Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi')
-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 1d1e39686c38..0fee95cd9a49 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -336,7 +336,7 @@ config SPI_DW_PCI config SPI_DW_MMIO tristate "Memory-mapped io interface driver for DW SPI core" - depends on SPI_DESIGNWARE + depends on SPI_DESIGNWARE && HAVE_CLK # # There are lots of SPI device types, with sensors and memory |