1 #ifndef __ARCH_ARM_CACHE_H 2 #define __ARCH_ARM_CACHE_H 3 4 5 /* L1 cache line size */ 6 #define L1_CACHE_SHIFT (CONFIG_ARM_L1_CACHE_SHIFT) 7 #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT) 8 9 #define __read_mostly __section(".data.read_mostly") 10 11 #endif 12 /* 13 * Local variables: 14 * mode: C 15 * c-file-style: "BSD" 16 * c-basic-offset: 4 17 * indent-tabs-mode: nil 18 * End: 19 */ 20