]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
Blackfin: fix missed cache config renames
authorGraf Yang <graf.yang@analog.com>
Tue, 22 Sep 2009 04:55:28 +0000 (04:55 +0000)
committerMike Frysinger <vapier@gentoo.org>
Wed, 7 Oct 2009 08:48:08 +0000 (04:48 -0400)
Looks like the big Kconfig cache split/rename missed one spot in the SMP
cache lock headers.

Signed-off-by: Graf Yang <graf.yang@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
arch/blackfin/include/asm/cache.h

index 7d829eaf6ed2c77786d70157aafca1b831c41216..8542bc31f63cae7445482a4a46b41d797f06acfd 100644 (file)
 
 #if defined(CONFIG_SMP) && \
     !defined(CONFIG_BFIN_CACHE_COHERENT)
-# if defined(CONFIG_BFIN_ICACHEABLE) || defined(CONFIG_BFIN_L2_ICACHEABLE)
+# if defined(CONFIG_BFIN_EXTMEM_ICACHEABLE) || defined(CONFIG_BFIN_L2_ICACHEABLE)
 # define __ARCH_SYNC_CORE_ICACHE
 # endif
-# if defined(CONFIG_BFIN_DCACHEABLE) || defined(CONFIG_BFIN_L2_DCACHEABLE)
+# if defined(CONFIG_BFIN_EXTMEM_DCACHEABLE) || defined(CONFIG_BFIN_L2_DCACHEABLE)
 # define __ARCH_SYNC_CORE_DCACHE
 # endif
 #ifndef __ASSEMBLY__