diff options
author | Simon Glass <sjg@chromium.org> | 2015-02-05 21:41:35 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-02-12 10:35:33 -0700 |
commit | f94a1bed07e2af1c46ddcf2046cddd979ebfd994 (patch) | |
tree | a05b119280cceeb6d16f2a4ebd510687c0971dbc /drivers/misc | |
parent | 2a4eeadd56e0760b33c7ebef383c105479a93cac (diff) | |
download | u-boot-imx-f94a1bed07e2af1c46ddcf2046cddd979ebfd994.zip u-boot-imx-f94a1bed07e2af1c46ddcf2046cddd979ebfd994.tar.gz u-boot-imx-f94a1bed07e2af1c46ddcf2046cddd979ebfd994.tar.bz2 |
dm: Expand and complete Kconfig in drivers/
Expand the help messages for each driver. Add missing Kconfig for I2C,
SPI flash and thermal.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index e69de29..813d1c2 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -0,0 +1,9 @@ +config DM_CROS_EC + bool "Enable Driver Model for Chrome OS EC" + depends on DM + help + Enable driver model for the Chrome OS EC interface. This + allows the cros_ec SPI driver to operate with CONFIG_DM_SPI + but otherwise makes few changes. Since cros_ec also supports + I2C and LPC (which don't support driver model yet), a full + conversion is not yet possible. |