From cafce5182a7a2a9ce17ad40d9d893a40ebd5aafd Mon Sep 17 00:00:00 2001 From: Julius Werner Date: Tue, 14 Jan 2014 13:45:37 -0800 Subject: [PATCH] libpayload: Add missing cache API stub to x86 This patch adds another cache invalidation stub to the x86 arch to make it usable in common code. This whole stuff should probably be redesigned anyway but I just want to get it working and unblock my CL for now... more cleanups coming later. BUG=None TEST=Builds on Falco. Change-Id: I2e8bdd8aa0e6723209384c24042f053f2e993fe6 Signed-off-by: Julius Werner Reviewed-on: https://chromium-review.googlesource.com/182534 Reviewed-by: Vincent Palatin --- payloads/libpayload/include/x86/arch/cache.h | 1 + 1 file changed, 1 insertion(+) diff --git a/payloads/libpayload/include/x86/arch/cache.h b/payloads/libpayload/include/x86/arch/cache.h index 4a8073616c..396048802f 100644 --- a/payloads/libpayload/include/x86/arch/cache.h +++ b/payloads/libpayload/include/x86/arch/cache.h @@ -41,5 +41,6 @@ #define dcache_invalidate_by_mva(addr, len) #define dcache_clean_invalidate_all() #define dcache_clean_invalidate_by_mva(addr, len) +#define icache_invalidate_all() #endif