From 91f1423cac0460ab79492a9c167765359b9dd3e2 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Fri, 7 Dec 2012 16:55:12 -0800 Subject: Fix Yabel compilation on non-x86 platforms Mostly preventing inb/outb being used on non-x86 Change-Id: I0434df4ce477c262337672867dc6ce398ff95279 Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/2002 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/device/oprom/yabel/compat/functions.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/device/oprom/yabel/compat') diff --git a/src/device/oprom/yabel/compat/functions.c b/src/device/oprom/yabel/compat/functions.c index 542c81f315..f693d7bae9 100644 --- a/src/device/oprom/yabel/compat/functions.c +++ b/src/device/oprom/yabel/compat/functions.c @@ -47,7 +47,8 @@ unsigned long tb_freq = 0; u64 get_time(void) { - u64 act; + u64 act = 0; +#if CONFIG_ARCH_X86 u32 eax, edx; __asm__ __volatile__( @@ -55,5 +56,6 @@ u64 get_time(void) : "=a"(eax), "=d"(edx) : /* no inputs, no clobber */); act = ((u64) edx << 32) | eax; +#endif return act; } -- cgit v1.2.3