diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-06-23 22:07:04 +0200 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-07-04 19:57:22 +0200 |
commit | fcfddfd50472d7ce84ef4e2853242bbeb7b37325 (patch) | |
tree | c10c063cf385b22067fe1e7acce02ca0173ee722 /arch/arm/include | |
parent | f749db3a75ec483692d7bb6d46a1fbecb65c38ba (diff) | |
download | u-boot-imx-fcfddfd50472d7ce84ef4e2853242bbeb7b37325.zip u-boot-imx-fcfddfd50472d7ce84ef4e2853242bbeb7b37325.tar.gz u-boot-imx-fcfddfd50472d7ce84ef4e2853242bbeb7b37325.tar.bz2 |
ARM: cache_v7: use __weak
This is not only more readable but also prevents a warning
about a missing prototype. The prototypes which are actually
missing are added.
cc: Albert Aribaud <albert.u.boot@aribaud.net>
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/cache.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/cache.h b/arch/arm/include/asm/cache.h index ddebbc8..a836e9f 100644 --- a/arch/arm/include/asm/cache.h +++ b/arch/arm/include/asm/cache.h @@ -29,6 +29,9 @@ void l2_cache_enable(void); void l2_cache_disable(void); void set_section_dcache(int section, enum dcache_option option); +void arm_init_before_mmu(void); +void arm_init_domains(void); +void cpu_cache_initialization(void); void dram_bank_mmu_setup(int bank); #endif |