From: Vladimir Serbinenko Date: Thu, 26 Feb 2015 21:20:59 +0000 (+0100) Subject: emu/cache: Change declaration of __clear_cache to match builtin declaration. X-Git-Tag: 2.02-beta3~380 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66b0e6649b8aa169db1b026abc4dd4167bb312e8;p=thirdparty%2Fgrub.git emu/cache: Change declaration of __clear_cache to match builtin declaration. Fixes compile of arm64-emu. --- diff --git a/grub-core/kern/emu/cache.c b/grub-core/kern/emu/cache.c index 07be6756f..6f89e871a 100644 --- a/grub-core/kern/emu/cache.c +++ b/grub-core/kern/emu/cache.c @@ -8,7 +8,7 @@ #include "../ia64/cache.c" #elif defined (__arm__) || defined (__aarch64__) -void __clear_cache (char *beg, char *end); +void __clear_cache (void *beg, void *end); void grub_arch_sync_caches (void *address, grub_size_t len)