linux-surface/kernel/drivers/base/regmap/Kconfig

39 lines
710 B
Plaintext
Raw Normal View History

2017-08-10 13:25:24 +00:00
# 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
2017-09-05 02:31:27 +00:00
default y if (REGMAP_I2C || REGMAP_SPI || REGMAP_SPMI || REGMAP_W1 || REGMAP_AC97 || REGMAP_MMIO || REGMAP_IRQ)
select IRQ_DOMAIN if REGMAP_IRQ
bool
config REGCACHE_COMPRESSED
2017-08-10 13:25:24 +00:00
select LZO_COMPRESS
select LZO_DECOMPRESS
bool
config REGMAP_AC97
tristate
config REGMAP_I2C
tristate
depends on I2C
config REGMAP_SPI
tristate
depends on SPI
config REGMAP_SPMI
tristate
depends on SPMI
2017-09-05 02:31:27 +00:00
config REGMAP_W1
tristate
depends on W1
2017-08-10 13:25:24 +00:00
config REGMAP_MMIO
tristate
config REGMAP_IRQ
bool