]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - drivers/base/regmap/Kconfig
Merge branch 'drm-next-4.14' of git://people.freedesktop.org/~agd5f/linux into drm...
[mirror_ubuntu-focal-kernel.git] / drivers / base / regmap / Kconfig
1 # Generic register map support. There are no user servicable options here,
2 # this is an API intended to be used by other kernel subsystems. These
3 # subsystems should select the appropriate symbols.
4
5 config REGMAP
6 default y if (REGMAP_I2C || REGMAP_SPI || REGMAP_SPMI || REGMAP_W1 || REGMAP_AC97 || REGMAP_MMIO || REGMAP_IRQ)
7 select IRQ_DOMAIN if REGMAP_IRQ
8 bool
9
10 config REGCACHE_COMPRESSED
11 select LZO_COMPRESS
12 select LZO_DECOMPRESS
13 bool
14
15 config REGMAP_AC97
16 tristate
17
18 config REGMAP_I2C
19 tristate
20 depends on I2C
21
22 config REGMAP_SPI
23 tristate
24 depends on SPI
25
26 config REGMAP_SPMI
27 tristate
28 depends on SPMI
29
30 config REGMAP_W1
31 tristate
32 depends on W1
33
34 config REGMAP_MMIO
35 tristate
36
37 config REGMAP_IRQ
38 bool