diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-01 13:19:23 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-07 14:33:48 -0500 |
commit | 784d4fdfdbe74065cf339e3c225dafdabe4fa772 (patch) | |
tree | 83f7f26a5a91acf81bd845db54c0be50c6c39822 /arch | |
parent | 6ea8b02ae9cbbfcab52d4fab226c0076da65dea0 (diff) | |
download | u-boot-784d4fdfdbe74065cf339e3c225dafdabe4fa772.tar.gz u-boot-784d4fdfdbe74065cf339e3c225dafdabe4fa772.tar.bz2 u-boot-784d4fdfdbe74065cf339e3c225dafdabe4fa772.zip |
rockchip: Correct a reference to CONFIG_BOOT_MODE_REG
This option does not exist and should refer to
CONFIG_ROCKCHIP_BOOT_MODE_REG instead. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-rockchip/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/Makefile b/arch/arm/mach-rockchip/Makefile index 32138fa723..e3d4a8b42e 100644 --- a/arch/arm/mach-rockchip/Makefile +++ b/arch/arm/mach-rockchip/Makefile @@ -18,7 +18,7 @@ obj-spl-$(CONFIG_ROCKCHIP_RK3036) += rk3036-board-spl.o ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TPL_BUILD),) # Always include boot_mode.o, as we bypass it (i.e. turn it off) -# inside of boot_mode.c when CONFIG_BOOT_MODE_REG is 0. This way, +# inside of boot_mode.c when CONFIG_ROCKCHIP_BOOT_MODE_REG is 0. This way, # we can have the preprocessor correctly recognise both 0x0 and 0 # meaning "turn it off". obj-y += boot_mode.o |