diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2019-08-07 23:04:41 -0700 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2019-08-26 16:09:02 +0800 |
commit | 44016bc59870c8816fe2cd4721dc5ff11038dd98 (patch) | |
tree | e567c71aafcd59041379b29284acbeec8e641ccd /board/emulation | |
parent | 8313fcdb4f93bb38b2658ad9e709f6850c658bbf (diff) |
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>
Reviewed-by: Rick Chen <rick@andestech.com>
Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>
Diffstat (limited to 'board/emulation')
-rw-r--r-- | board/emulation/qemu-riscv/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/emulation/qemu-riscv/Kconfig b/board/emulation/qemu-riscv/Kconfig index 1928d6dda0..7ce12018e7 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 |