diff options
author | Hannes Schmelzer <hannes.schmelzer@br-automation.com> | 2019-08-22 15:41:42 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-25 20:58:58 -0400 |
commit | 015287919fb8243c6a539fdc70638c1bf4ca6cc7 (patch) | |
tree | 39a8a3f892ec02273b146095fc2393f23948e662 /include/configs/rk3128_common.h | |
parent | c680df7e84d3736ada08e4f0caa5a8b770e781ee (diff) |
moveconfig: prepare moving CONFIG_SYS_SPI_U_BOOT_OFFS to Kconfig step 1
Some boards have coded this offset with formula or bitshifts in their
board-config. Manually convert these things into hex-values to be able
using moveconfig.py afterwards.
Signed-off-by: Hannes Schmelzer <hannes.schmelzer@br-automation.com>
Diffstat (limited to 'include/configs/rk3128_common.h')
-rw-r--r-- | include/configs/rk3128_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/rk3128_common.h b/include/configs/rk3128_common.h index be55fb73ed..9ba516f35d 100644 --- a/include/configs/rk3128_common.h +++ b/include/configs/rk3128_common.h @@ -26,7 +26,7 @@ #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */ /* RAW SD card / eMMC locations. */ -#define CONFIG_SYS_SPI_U_BOOT_OFFS (128 << 10) +#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x20000 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1 #define CONFIG_SYS_SDRAM_BASE 0x60000000 |