cache: Fix compilation for ppc, sparc and arm64
authorphcoder <phcoder@sid.debian.laptop.phnet>
Sun, 9 Jul 2017 18:59:15 +0000 (20:59 +0200)
committerphcoder <phcoder@sid.debian.laptop.phnet>
Sun, 9 Jul 2017 18:59:15 +0000 (20:59 +0200)
include/grub/cache.h

index 1c98ce2..ccfa717 100644 (file)
@@ -34,7 +34,9 @@ void EXPORT_FUNC(grub_arch_sync_caches) (void *address, grub_size_t len);
 #endif
 
 #ifndef GRUB_MACHINE_EMU
-#if defined (__i386__) || defined (__x86_64__)
+#if defined (__aarch64__) || defined (__powerpc__) || defined (__sparc__)
+
+#elif defined (__i386__) || defined (__x86_64__)
 static inline void
 grub_arch_sync_dma_caches (volatile void *address __attribute__ ((unused)),
                           grub_size_t len __attribute__ ((unused)))