diff options
author | Kim, Heung Jun <riverful@gmail.com> | 2009-06-20 11:02:17 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-07-06 21:52:25 +0200 |
commit | 06e758e75c79ce8761866bf8165c443584a20893 (patch) | |
tree | ad667c552c3e9ed2e12117b1144beffb49c416d1 /include | |
parent | d583ef5147066d3609de21f3beebbab99a19bad4 (diff) | |
download | u-boot-imx-06e758e75c79ce8761866bf8165c443584a20893.zip u-boot-imx-06e758e75c79ce8761866bf8165c443584a20893.tar.gz u-boot-imx-06e758e75c79ce8761866bf8165c443584a20893.tar.bz2 |
move L2 cache enable/disable function to cache.c in the omap3 SoC directory
Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
CC: Dirk Behme <dirk.behme@googlemail.com>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/cache.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-arm/cache.h b/include/asm-arm/cache.h index 248240b..d0518be 100644 --- a/include/asm-arm/cache.h +++ b/include/asm-arm/cache.h @@ -38,4 +38,8 @@ static inline void invalidate_l2_cache(void) : : "r" (val) : "cc"); isb(); } + +void l2_cache_enable(void); +void l2_cache_disable(void); + #endif /* _ASM_CACHE_H */ |