diff options
Diffstat (limited to 'include/asm-m68k')
-rw-r--r-- | include/asm-m68k/global_data.h | 2 | ||||
-rw-r--r-- | include/asm-m68k/u-boot.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-m68k/global_data.h b/include/asm-m68k/global_data.h index 7377d31..10c6931 100644 --- a/include/asm-m68k/global_data.h +++ b/include/asm-m68k/global_data.h @@ -51,7 +51,7 @@ typedef struct global_data { unsigned long i2c1_clk; unsigned long i2c2_clk; #endif - unsigned long ram_size; /* RAM size */ + phys_size_t ram_size; /* RAM size */ unsigned long reloc_off; /* Relocation Offset */ unsigned long reset_status; /* reset status register at boot */ unsigned long env_addr; /* Address of Environment struct */ diff --git a/include/asm-m68k/u-boot.h b/include/asm-m68k/u-boot.h index 93a6959..5a0d5fe 100644 --- a/include/asm-m68k/u-boot.h +++ b/include/asm-m68k/u-boot.h @@ -38,7 +38,7 @@ typedef struct bd_info { unsigned long bi_memstart; /* start of DRAM memory */ - unsigned long bi_memsize; /* size of DRAM memory in bytes */ + phys_size_t bi_memsize; /* size of DRAM memory in bytes */ unsigned long bi_flashstart; /* start of FLASH memory */ unsigned long bi_flashsize; /* size of FLASH memory */ unsigned long bi_flashoffset; /* reserved area for startup monitor */ |