[U-Boot] [PATCH] riscv: qemu: Fix kconfig build warning

When 'make qemu-riscv64_defconfig', there is a build warning:
board/emulation/qemu-riscv/Kconfig:24: warning: config symbol defined without type
Fix it by specifying the config symbol type to 'hex'.
Signed-off-by: Bin Meng bmeng.cn@gmail.com ---
board/emulation/qemu-riscv/Kconfig | 1 + 1 file changed, 1 insertion(+)
diff --git a/board/emulation/qemu-riscv/Kconfig b/board/emulation/qemu-riscv/Kconfig index 1928d6d..7ce1201 100644 --- a/board/emulation/qemu-riscv/Kconfig +++ b/board/emulation/qemu-riscv/Kconfig @@ -22,6 +22,7 @@ config SPL_TEXT_BASE default 0x80000000
config SPL_OPENSBI_LOAD_ADDR + hex default 0x81000000
config BOARD_SPECIFIC_OPTIONS # dummy

On Wed, 2019-08-07 at 23:04 -0700, Bin Meng wrote:
When 'make qemu-riscv64_defconfig', there is a build warning:
board/emulation/qemu-riscv/Kconfig:24: warning: config symbol defined without type
Fix it by specifying the config symbol type to 'hex'.
Signed-off-by: Bin Meng bmeng.cn@gmail.com
board/emulation/qemu-riscv/Kconfig | 1 + 1 file changed, 1 insertion(+)
Ah, I missed this. Thanks!
Reviewed-by: Lukas Auer lukas.auer@aisec.fraunhofer.de
participants (2)
-
Auer, Lukas
-
Bin Meng