[U-Boot] [PATCH 0/2] work_92105: remove a couple of unused config options

The series contains a couple of trivial changes, which remove unused legacy defines found in work_92105 board file.
Vladimir Zapolskiy (2): work_92105: remove unused CONFIG_LPC32XX_SPL configuration option work_92105: remove unused CONFIG_SPL_NAND_BOOT configuration option
include/configs/work_92105.h | 4 ---- scripts/config_whitelist.txt | 1 - 2 files changed, 5 deletions(-)

The CONFIG_LPC32XX_SPL option from board include file has never been used, it is safe to remove it.
Signed-off-by: Vladimir Zapolskiy vz@mleia.com --- include/configs/work_92105.h | 3 --- scripts/config_whitelist.txt | 1 - 2 files changed, 4 deletions(-)
diff --git a/include/configs/work_92105.h b/include/configs/work_92105.h index f453f0167511..471b3f48616f 100644 --- a/include/configs/work_92105.h +++ b/include/configs/work_92105.h @@ -25,9 +25,6 @@ #define CONFIG_SKIP_LOWLEVEL_INIT #endif
-/* generate LPC32XX-specific SPL image */ -#define CONFIG_LPC32XX_SPL - /* * Memory configurations */ diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt index 94953d873802..68780ac87f8e 100644 --- a/scripts/config_whitelist.txt +++ b/scripts/config_whitelist.txt @@ -1180,7 +1180,6 @@ CONFIG_LPC32XX_NAND_SLC_WHOLD CONFIG_LPC32XX_NAND_SLC_WSETUP CONFIG_LPC32XX_NAND_SLC_WWIDTH CONFIG_LPC32XX_SDRAM_ -CONFIG_LPC32XX_SPL CONFIG_LPC32XX_SSP_TIMEOUT CONFIG_LPC_BASE CONFIG_LPC_IO_BASE

On Mon, Sep 17, 2018 at 09:56:36PM +0300, Vladimir Zapolskiy wrote:
The CONFIG_LPC32XX_SPL option from board include file has never been used, it is safe to remove it.
Signed-off-by: Vladimir Zapolskiy vz@mleia.com
Applied to u-boot/master, thanks!

The option is unused, SPL image gets a wanted boot device by standard spl_boot_device() call.
Signed-off-by: Vladimir Zapolskiy vz@mleia.com --- include/configs/work_92105.h | 1 - 1 file changed, 1 deletion(-)
diff --git a/include/configs/work_92105.h b/include/configs/work_92105.h index 471b3f48616f..67b5e9aa1131 100644 --- a/include/configs/work_92105.h +++ b/include/configs/work_92105.h @@ -146,7 +146,6 @@ /* SPL will load U-Boot from NAND offset 0x40000 */ #define CONFIG_SPL_NAND_DRIVERS #define CONFIG_SPL_NAND_BASE -#define CONFIG_SPL_NAND_BOOT #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x00040000 #define CONFIG_SPL_PAD_TO 0x20000 /* U-Boot will be 0x40000 bytes, loaded and run at CONFIG_SYS_TEXT_BASE */

On Mon, Sep 17, 2018 at 09:56:37PM +0300, Vladimir Zapolskiy wrote:
The option is unused, SPL image gets a wanted boot device by standard spl_boot_device() call.
Signed-off-by: Vladimir Zapolskiy vz@mleia.com
Applied to u-boot/master, thanks!
participants (2)
-
Tom Rini
-
Vladimir Zapolskiy