aboutsummaryrefslogtreecommitdiff
path: root/src/device/oprom/yabel/compat
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2012-12-07 16:55:12 -0800
committerRonald G. Minnich <rminnich@gmail.com>2012-12-08 06:46:14 +0100
commit91f1423cac0460ab79492a9c167765359b9dd3e2 (patch)
tree08d04c715a1d53563138eed391f022eeaa1b4323 /src/device/oprom/yabel/compat
parent4c4dd93be7fc7d7ae0d5802fe15f8e5e533a6872 (diff)
Fix Yabel compilation on non-x86 platforms
Mostly preventing inb/outb being used on non-x86 Change-Id: I0434df4ce477c262337672867dc6ce398ff95279 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/2002 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/device/oprom/yabel/compat')
-rw-r--r--src/device/oprom/yabel/compat/functions.c4
1 files changed, 3 insertions, 1 deletions
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;
}