asm-generic: global data: use u64 for bi_dram start/size

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: I2c253633734e901caf6e3122b4b916f4eb6cd124
This commit is contained in:
Joseph Chen 2019-12-16 20:56:40 +08:00
parent 028a3c0879
commit 36d452911c
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ typedef struct bd_info {
unsigned int bi_andr_version; unsigned int bi_andr_version;
#ifdef CONFIG_NR_DRAM_BANKS #ifdef CONFIG_NR_DRAM_BANKS
struct { /* RAM configuration */ struct { /* RAM configuration */
phys_addr_t start; u64 start;
phys_size_t size; u64 size;
} bi_dram[CONFIG_NR_DRAM_BANKS]; } bi_dram[CONFIG_NR_DRAM_BANKS];
#endif /* CONFIG_NR_DRAM_BANKS */ #endif /* CONFIG_NR_DRAM_BANKS */
} bd_t; } bd_t;