Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Blackfin: fix missed cache config renames

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>

authored by

Graf Yang and committed by
Mike Frysinger
19a3b603 48dee093

+2 -2
+2 -2
arch/blackfin/include/asm/cache.h
··· 38 38 39 39 #if defined(CONFIG_SMP) && \ 40 40 !defined(CONFIG_BFIN_CACHE_COHERENT) 41 - # if defined(CONFIG_BFIN_ICACHEABLE) || defined(CONFIG_BFIN_L2_ICACHEABLE) 41 + # if defined(CONFIG_BFIN_EXTMEM_ICACHEABLE) || defined(CONFIG_BFIN_L2_ICACHEABLE) 42 42 # define __ARCH_SYNC_CORE_ICACHE 43 43 # endif 44 - # if defined(CONFIG_BFIN_DCACHEABLE) || defined(CONFIG_BFIN_L2_DCACHEABLE) 44 + # if defined(CONFIG_BFIN_EXTMEM_DCACHEABLE) || defined(CONFIG_BFIN_L2_DCACHEABLE) 45 45 # define __ARCH_SYNC_CORE_DCACHE 46 46 # endif 47 47 #ifndef __ASSEMBLY__