]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ARMV7: Fix build for non-OMAP3 boards
authorSteve Sakoman <steve@sakoman.com>
Thu, 21 Oct 2010 05:00:00 +0000 (22:00 -0700)
committerSandeep Paulraj <s-paulraj@ti.com>
Thu, 4 Nov 2010 19:27:02 +0000 (15:27 -0400)
Commit c3d3a54 uses CONFIG_ARMV7 to determine whether to call the
v7_flush_cache_all function.  This breaks the build for all non-OMAP3
boards (like Panda and OMAP4430SDP) since there is only a v7_flush_cache_all
implementation for OMAP3.

This patch uses CONFIG_OMAP3XXX instead of CONFIG_ARMV7 so that only boards
with a v7_flush_cache_all will make the call.

Tested on Beagle, Overo, Panda, and OMAP4430SDP

Signed-off-by: Steve Sakoman <steve.sakoman@linaro.org>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
arch/arm/lib/cache.c

index 57151689a90dbadf65420212882341005b8a8831..30686fe69b739af3c04b9902ba01c5ba3fa87e01 100644 (file)
@@ -38,7 +38,7 @@ void  flush_cache (unsigned long dummy1, unsigned long dummy2)
        /* disable write buffer as well (page 2-22) */
        asm("mcr p15, 0, %0, c7, c10, 4" : : "r" (0));
 #endif
-#ifdef CONFIG_ARMV7
+#ifdef CONFIG_OMAP34XX
        void v7_flush_cache_all(void);
 
        v7_flush_cache_all();