diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-05 15:36:21 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-09 16:32:25 -0500 |
commit | 71e3e215079f7b228e8eaec084109b0aa5672fd1 (patch) | |
tree | bcc031fcfb32fd160ca3ddcbfadb5c73f4d29f94 /include/bcb.h | |
parent | b8bffe661f4fac2b07cca7f32a950a6fcdec7533 (diff) | |
download | u-boot-71e3e215079f7b228e8eaec084109b0aa5672fd1.tar.gz u-boot-71e3e215079f7b228e8eaec084109b0aa5672fd1.tar.bz2 u-boot-71e3e215079f7b228e8eaec084109b0aa5672fd1.zip |
Correct SPL use of CMD_BCB
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_BCB defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/bcb.h')
-rw-r--r-- | include/bcb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bcb.h b/include/bcb.h index 897e83d371..5edb17aa47 100644 --- a/include/bcb.h +++ b/include/bcb.h @@ -8,7 +8,7 @@ #ifndef __BCB_H__ #define __BCB_H__ -#if CONFIG_IS_ENABLED(CMD_BCB) +#if IS_ENABLED(CONFIG_CMD_BCB) int bcb_write_reboot_reason(int devnum, char *partp, const char *reasonp); #else #include <linux/errno.h> |