summaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/cache.h
blob: ff797493f760c674dfcd2fbf8501ac0ba2307126 (plain)
1
2
3
4
5
6
7
8
9
#ifndef __ASM_CACHE_H
#define __ASM_CACHE_H

static inline void flush_icache(void)
{
	asm volatile("mcr p15, 0, %0, c7, c5, 0" : : "r" (0));
}

#endif