diff options
author | Tom Rini <trini@konsulko.com> | 2022-06-10 22:59:38 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-06-28 17:11:48 -0400 |
commit | 910feb50d40acdd38b3709050fbe6b650e8c4b9d (patch) | |
tree | a5c3ad3ffb6761477a9f2e8f9811dffc87c7a09d /include/configs/iot2050.h | |
parent | de47ff536363289f92f85ed1e4901724d238432d (diff) | |
download | u-boot-910feb50d40acdd38b3709050fbe6b650e8c4b9d.tar.gz |
Globally remove most CONFIG_SPL_BUILD tests from config headers
With the exception of how PowerPC handles SPL and TPL (which has its own
issues), we cannot safely hide options under CONFIG_SPL_BUILD. Largely
remove the places that have this test today.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs/iot2050.h')
-rw-r--r-- | include/configs/iot2050.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/configs/iot2050.h b/include/configs/iot2050.h index 296bcd4c7b..d379bad0b1 100644 --- a/include/configs/iot2050.h +++ b/include/configs/iot2050.h @@ -21,8 +21,6 @@ #define EXTRA_ENV_IOT2050_BOARD_SETTINGS \ "usb_pgood_delay=900\0" -#ifndef CONFIG_SPL_BUILD - #if CONFIG_IS_ENABLED(CMD_USB) # define BOOT_TARGET_USB(func) \ func(USB, usb, 0) \ @@ -44,8 +42,6 @@ #include <config_distro_bootcmd.h> -#endif - #define CONFIG_EXTRA_ENV_SETTINGS \ DEFAULT_LINUX_BOOT_ENV \ BOOTENV \ |