diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-08-12 10:26:50 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-08-12 09:23:49 -0400 |
commit | ab65006b08c5a2d022b1ce43581e555c82926cd4 (patch) | |
tree | d391bc647bd94ff739c8ba684beba1b84b24fbf4 /drivers/spmi | |
parent | 568d492a07c142b05d3b759ba8337698bae76e69 (diff) | |
download | u-boot-ab65006b08c5a2d022b1ce43581e555c82926cd4.tar.gz |
kconfig: use bool instead of boolean for type definition attributes
Linux stopped the use of keyword 'boolean' in Kconfig.
Refer to commit 6341e62b212a2541efb0160c470e90bd226d5496 ("kconfig:
use bool instead of boolean for type definition attributes")
in Linux Kernel.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'drivers/spmi')
-rw-r--r-- | drivers/spmi/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spmi/Kconfig b/drivers/spmi/Kconfig index 8d25b457a6..ab4878ebae 100644 --- a/drivers/spmi/Kconfig +++ b/drivers/spmi/Kconfig @@ -9,13 +9,13 @@ config SPMI to connect PMIC devices on various SoCs. config SPMI_MSM - boolean "Support Qualcomm SPMI bus" + bool "Support Qualcomm SPMI bus" depends on SPMI ---help--- Support SPMI bus implementation found on Qualcomm Snapdragon SoCs. config SPMI_SANDBOX - boolean "Support for Sandbox SPMI bus" + bool "Support for Sandbox SPMI bus" depends on SPMI ---help--- Demo SPMI bus implementation. Emulates part of PM8916 as single |