diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2010-06-18 20:29:24 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2010-08-12 05:27:23 -0400 |
commit | 15742c8a42c89aa5e63542b0de00b0dc4c5038cf (patch) | |
tree | a342b299378a82f74ba0d15109ba227265151849 | |
parent | 3cb46ac058f8ce3ed339fc5dcf6faae4329153c9 (diff) |
mfd: More verbose MFD Kconfig entry
For people to be able to intellingibly decide if they want to enable MFD
drivers or not, we have to give them a much better description of what they
are.
-rw-r--r-- | drivers/mfd/Kconfig | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 9da0e504bbe9..29781ca1eb6f 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig | |||
@@ -7,7 +7,16 @@ menuconfig MFD_SUPPORT | |||
7 | depends on HAS_IOMEM | 7 | depends on HAS_IOMEM |
8 | default y | 8 | default y |
9 | help | 9 | help |
10 | Configure MFD device drivers. | 10 | Multifunction devices embed several functions (e.g. GPIOs, |
11 | touchscreens, keyboards, current regulators, power management chips, | ||
12 | etc...) in one single integrated circuit. They usually talk to the | ||
13 | main CPU through one or more IRQ lines and low speed data busses (SPI, | ||
14 | I2C, etc..). They appear as one single device to the main system | ||
15 | through the data bus and the MFD framework allows for sub devices | ||
16 | (a.k.a. functions) to appear as discrete platform devices. | ||
17 | MFDs are typically found on embedded platforms. | ||
18 | |||
19 | This option alone does not add any kernel code. | ||
11 | 20 | ||
12 | if MFD_SUPPORT | 21 | if MFD_SUPPORT |
13 | 22 | ||