9
0
Fork 0
barebox/arch/arm/include/asm/cache.h

10 lines
151 B
C

#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