Removes some functions that are not used anywhere: l2_inv_pa() l2_clean_pa()
This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist <rickard_strandqv...@spectrumdigital.se> --- arch/arm/mm/cache-feroceon-l2.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/arch/arm/mm/cache-feroceon-l2.c b/arch/arm/mm/cache-feroceon-l2.c index e028a7f..c2eac97 100644 --- a/arch/arm/mm/cache-feroceon-l2.c +++ b/arch/arm/mm/cache-feroceon-l2.c @@ -65,11 +65,6 @@ static inline void l2_put_va(unsigned long vaddr) #endif } -static inline void l2_clean_pa(unsigned long addr) -{ - __asm__("mcr p15, 1, %0, c15, c9, 3" : : "r" (addr)); -} - static inline void l2_clean_pa_range(unsigned long start, unsigned long end) { unsigned long va_start, va_end, flags; @@ -96,11 +91,6 @@ static inline void l2_clean_inv_pa(unsigned long addr) __asm__("mcr p15, 1, %0, c15, c10, 3" : : "r" (addr)); } -static inline void l2_inv_pa(unsigned long addr) -{ - __asm__("mcr p15, 1, %0, c15, c11, 3" : : "r" (addr)); -} - static inline void l2_inv_pa_range(unsigned long start, unsigned long end) { unsigned long va_start, va_end, flags; -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/