diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-23 08:39:38 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-23 08:39:38 +0300 |
commit | c52f1dd5292e87f77380624f67da6eaf5dd2df3a (patch) | |
tree | f39a07241220a4c984e4a89e7fa076673f6c5d85 /drivers | |
parent | 0390c8835690506802fd5d54ea5444f0b9b1708b (diff) | |
parent | 5784ee4dcbb896f5367855540b264e21a0c33854 (diff) | |
download | linux-stable-c52f1dd5292e87f77380624f67da6eaf5dd2df3a.tar.gz linux-stable-c52f1dd5292e87f77380624f67da6eaf5dd2df3a.tar.bz2 linux-stable-c52f1dd5292e87f77380624f67da6eaf5dd2df3a.zip |
Merge tag 'regmap-fix-mmio' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap
Pull regmap fix from Mark Brown:
"regmap: Fix for dependencies for MMIO
Trivial dependency issue, not noticed before as the only user of MMIO
also needs I2C."
* tag 'regmap-fix-mmio' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap:
regmap: select REGMAP if REGMAP_MMIO and REGMAP_IRQ enabled
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/base/regmap/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/regmap/Kconfig b/drivers/base/regmap/Kconfig index 6be390bd8bd1..f0d30543fcce 100644 --- a/drivers/base/regmap/Kconfig +++ b/drivers/base/regmap/Kconfig @@ -3,7 +3,7 @@ # subsystems should select the appropriate symbols. config REGMAP - default y if (REGMAP_I2C || REGMAP_SPI) + default y if (REGMAP_I2C || REGMAP_SPI || REGMAP_MMIO || REGMAP_IRQ) select LZO_COMPRESS select LZO_DECOMPRESS select IRQ_DOMAIN if REGMAP_IRQ |