# Generic register map support.  There are no user servicable options here,
# this is an API intended to be used by other kernel subsystems.  These
# subsystems should select the appropriate symbols.

config REGMAP
	select IRQ_DOMAIN if REGMAP_IRQ
	tristate

config REGCACHE_COMPRESSED
	select LZO_COMPRESS
	select LZO_DECOMPRESS
	bool

config REGMAP_AC97
	tristate

config REGMAP_I2C
	tristate
	select REGMAP
	depends on I2C

config REGMAP_SPI
	tristate
	select REGMAP
	depends on SPI_MASTER
	depends on SPI

config REGMAP_SPMI
	select REGMAP
	tristate
	depends on SPMI

config REGMAP_MMIO
	tristate
	select REGMAP

config REGMAP_IRQ
	select REGMAP
	bool

config REGMAP_ICC
	tristate "regmap over ICC"
	depends on LTQ_ICC
