From fd2f03054317d782cbc25b897b669a2dbe108f42 Mon Sep 17 00:00:00 2001 From: Furquan Shaikh Date: Wed, 12 Nov 2014 16:19:37 -0800 Subject: elog: Fix typecast issues related to 64-bit compilation. BUG=chrome-os-partner:33764 BRANCH=None TEST=Compiles successfully for ryu and nyan. Change-Id: I036fd42d5cd4b71bcb68eea0fdd9a4e1aa4711e9 Signed-off-by: Patrick Georgi Original-Commit-Id: 7c3db3d5c8e00b6c273ae240da137062597749aa Original-Change-Id: I5e38966fe06aa3302a7c1b536f5ffd8bb22d4947 Original-Signed-off-by: Furquan Shaikh Original-Reviewed-on: https://chromium-review.googlesource.com/229413 Original-Reviewed-by: Aaron Durbin Original-Commit-Queue: Furquan Shaikh Original-Tested-by: Furquan Shaikh Reviewed-on: http://review.coreboot.org/9424 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/drivers/elog/elog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/drivers/elog/elog.c') diff --git a/src/drivers/elog/elog.c b/src/drivers/elog/elog.c index 8bc8a0753a..c96a923b93 100644 --- a/src/drivers/elog/elog.c +++ b/src/drivers/elog/elog.c @@ -108,7 +108,7 @@ static inline u32 elog_flash_address_to_offset(u8 *address) return (u32)address - ((u32)~0UL - rom_size + 1); #else - return (u32)address; + return (u32)(uintptr_t)address; #endif } -- cgit v1.2.3