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 /arch/arm/cpu/armv8/Kconfig | |
parent | 568d492a07c142b05d3b759ba8337698bae76e69 (diff) |
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 'arch/arm/cpu/armv8/Kconfig')
-rw-r--r-- | arch/arm/cpu/armv8/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv8/Kconfig b/arch/arm/cpu/armv8/Kconfig index acf2460ede..7e1fc4cbf9 100644 --- a/arch/arm/cpu/armv8/Kconfig +++ b/arch/arm/cpu/armv8/Kconfig @@ -1,7 +1,7 @@ if ARM64 config ARMV8_MULTIENTRY - boolean "Enable multiple CPUs to enter into U-Boot" + bool "Enable multiple CPUs to enter into U-Boot" config ARMV8_SPIN_TABLE bool "Support spin-table enable method" |