summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2021-05-20 13:08:44 +0200
committerTom Rini <trini@konsulko.com>2021-05-26 17:26:07 -0400
commitce869b55f8bebdaeed62b45d273e6133e976e8ec (patch)
treecd342d9c90346fd9d6c70b254a796ddf765d9495
parent9e8bb078859a559b17effdb21bafdb050b859b6e (diff)
downloadu-boot-ce869b55f8bebdaeed62b45d273e6133e976e8ec.tar.gz
u-boot-ce869b55f8bebdaeed62b45d273e6133e976e8ec.tar.xz
u-boot-ce869b55f8bebdaeed62b45d273e6133e976e8ec.zip
spl: Kconfig: Use tabs instead of space for alignment
A lot of entries were using spaces instead of tab for alignment that's why it is good to fix it to use the same style everywhere. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--common/spl/Kconfig24
1 files changed, 12 insertions, 12 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index df5468f1ac..b709a05a7b 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -165,7 +165,7 @@ config SPL_BOARD_INIT
provided by the board.
config SPL_BOOTROM_SUPPORT
- bool "Support returning to the BOOTROM"
+ bool "Support returning to the BOOTROM"
help
Some platforms (e.g. the Rockchip RK3368) provide support in their
ROM for loading the next boot-stage after performing basic setup
@@ -707,7 +707,7 @@ config SYS_MMCSD_FS_BOOT_PARTITION
default 1
help
Partition on the MMC to load U-Boot from when the MMC is being
- used in fs mode
+ used in fs mode
config SPL_MMC_TINY
bool "Tiny MMC framework in SPL"
@@ -784,8 +784,8 @@ config SPL_NAND_SIMPLE
config SPL_NAND_BASE
depends on SPL_NAND_DRIVERS
bool "Use Base NAND Driver"
- help
- Include nand_base.c in the SPL.
+ help
+ Include nand_base.c in the SPL.
config SPL_NAND_IDENT
depends on SPL_NAND_BASE
@@ -1301,7 +1301,7 @@ config SPL_ATF_LOAD_IMAGE_V2
method, say Y.
config SPL_ATF_NO_PLATFORM_PARAM
- bool "Pass no platform parameter"
+ bool "Pass no platform parameter"
depends on SPL_ATF
help
While we expect to call a pointer to a valid FDT (or NULL)
@@ -1395,7 +1395,7 @@ config TPL_BOOTCOUNT_LIMIT
For example, it may be useful to choose the device to boot.
config TPL_LDSCRIPT
- string "Linker script for the TPL stage"
+ string "Linker script for the TPL stage"
depends on TPL
default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
@@ -1409,7 +1409,7 @@ config TPL_LDSCRIPT
fall back to the linker-script used for the SPL stage.
config TPL_NEEDS_SEPARATE_TEXT_BASE
- bool "TPL needs a separate text-base"
+ bool "TPL needs a separate text-base"
default n
depends on TPL
help
@@ -1418,7 +1418,7 @@ config TPL_NEEDS_SEPARATE_TEXT_BASE
.text sections of the TPL stage has to be set below.
config TPL_NEEDS_SEPARATE_STACK
- bool "TPL needs a separate initial stack-pointer"
+ bool "TPL needs a separate initial stack-pointer"
default n
depends on TPL
help
@@ -1426,20 +1426,20 @@ config TPL_NEEDS_SEPARATE_STACK
stack-pointer from the settings for the SPL stage.
config TPL_TEXT_BASE
- hex "Base address for the .text section of the TPL stage"
+ hex "Base address for the .text section of the TPL stage"
depends on TPL_NEEDS_SEPARATE_TEXT_BASE
help
The base address for the .text section of the TPL stage.
config TPL_MAX_SIZE
- int "Maximum size (in bytes) for the TPL stage"
+ int "Maximum size (in bytes) for the TPL stage"
default 0
depends on TPL
help
The maximum size (in bytes) of the TPL stage.
config TPL_STACK
- hex "Address of the initial stack-pointer for the TPL stage"
+ hex "Address of the initial stack-pointer for the TPL stage"
depends on TPL_NEEDS_SEPARATE_STACK
help
The address of the initial stack-pointer for the TPL stage.
@@ -1457,7 +1457,7 @@ config TPL_READ_ONLY
device-private data.
config TPL_BOOTROM_SUPPORT
- bool "Support returning to the BOOTROM (from TPL)"
+ bool "Support returning to the BOOTROM (from TPL)"
help
Some platforms (e.g. the Rockchip RK3368) provide support in their
ROM for loading the next boot-stage after performing basic setup