diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/blackfin/include/asm/cacheflush.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/blackfin/include/asm/cacheflush.h b/arch/blackfin/include/asm/cacheflush.h index d7726ab486ff..94697f0f6f40 100644 --- a/arch/blackfin/include/asm/cacheflush.h +++ b/arch/blackfin/include/asm/cacheflush.h | |||
@@ -108,6 +108,11 @@ static inline int bfin_addr_dcachable(unsigned long addr) | |||
108 | addr >= _ramend && addr < physical_mem_end) | 108 | addr >= _ramend && addr < physical_mem_end) |
109 | return 1; | 109 | return 1; |
110 | 110 | ||
111 | #ifndef CONFIG_BFIN_L2_NOT_CACHED | ||
112 | if (addr >= L2_START && addr < L2_START + L2_LENGTH) | ||
113 | return 1; | ||
114 | #endif | ||
115 | |||
111 | return 0; | 116 | return 0; |
112 | } | 117 | } |
113 | 118 | ||