Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10595
-gerrit
commit 650bb158d3d8358a67077fb07768fa3d450c3824 Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Fri Jun 19 14:59:06 2015 -0700
device: DDR3 generic code 64bit fix
Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org
Change-Id: I5ff309948c36289eedeb8a18030cdd2b4c337690 --- src/include/device/dram/ddr3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/include/device/dram/ddr3.h b/src/include/device/dram/ddr3.h index 10924a2..295ea25 100644 --- a/src/include/device/dram/ddr3.h +++ b/src/include/device/dram/ddr3.h @@ -186,7 +186,7 @@ void dram_print_spd_ddr3(const dimm_attr * dimm); * * Should be useful when doing an MRS to the DIMM */ -static inline u32 volatile_read(volatile u32 addr) +static inline u32 volatile_read(volatile uintptr_t addr) { volatile u32 result; result = *(volatile u32 *)addr;