diff options
author | Adam Ford <aford173@gmail.com> | 2019-08-24 21:50:34 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-26 18:46:29 +0300 |
commit | a074667d52031b1074bc23ca59bf0b73c13ccf7c (patch) | |
tree | 9f30c50aa29e5c4f1a0a25f7b04e3de98ddb09e6 /drivers/misc | |
parent | 055c2a78b70dd714dee588ebd7b335249a670d22 (diff) | |
download | u-boot-a074667d52031b1074bc23ca59bf0b73c13ccf7c.tar.xz |
Kconfig: Varios: Fix more SPL, TPL dependencies
Several options are presenting themselves on a various boards
where the options are clearly not used. (ie, SPL/TPL options
when SPL or TPL are not defined)
This patch is not attempting to be a complete list of items, but
more like low hanging fruit. In some instances, I wasn't sure
of DM was required, so I simply made them SPL or TPL.
This patch attempts to reduce some of the menuconfig noise
by defining dependencies so they don't appear when not used.
Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index cb8b5c04db..8037b6ee2d 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -88,6 +88,7 @@ config CROS_EC config SPL_CROS_EC bool "Enable Chrome OS EC in SPL" + depends on SPL help Enable access to the Chrome OS EC in SPL. This is a separate microcontroller typically available on a SPI bus on Chromebooks. It @@ -97,6 +98,7 @@ config SPL_CROS_EC config TPL_CROS_EC bool "Enable Chrome OS EC in TPL" + depends on TPL help Enable access to the Chrome OS EC in TPL. This is a separate microcontroller typically available on a SPI bus on Chromebooks. It |