aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-10-23 08:39:38 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2012-10-23 08:39:38 +0300
commitc52f1dd5292e87f77380624f67da6eaf5dd2df3a (patch)
treef39a07241220a4c984e4a89e7fa076673f6c5d85 /drivers
parentmodule_signing: fix printk format warning (diff)
parentregmap: select REGMAP if REGMAP_MMIO and REGMAP_IRQ enabled (diff)
downloadlinux-dev-c52f1dd5292e87f77380624f67da6eaf5dd2df3a.tar.xz
linux-dev-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/Kconfig2
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