]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL use of CMD_BCB
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:36:21 +0000 (15:36 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 9 Feb 2023 21:32:25 +0000 (16:32 -0500)
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>
include/bcb.h

index 897e83d371f6731442e11bf1e768ae26c5f898cd..5edb17aa47d33511068cec19a1f54ece623dd0e9 100644 (file)
@@ -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>