1 #ifndef __OMAP_SECURE_H__ 2 #define __OMAP_SECURE_H__ 3 4 #include <linux/types.h> 5 6 #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4) 7 extern int omap_secure_ram_reserve_memblock(void); 8 #else omap_secure_ram_reserve_memblock(void)9static inline void omap_secure_ram_reserve_memblock(void) 10 { } 11 #endif 12 13 #ifdef CONFIG_OMAP4_ERRATA_I688 14 extern int omap_barrier_reserve_memblock(void); 15 #else omap_barrier_reserve_memblock(void)16static inline void omap_barrier_reserve_memblock(void) 17 { } 18 #endif 19 #endif /* __OMAP_SECURE_H__ */ 20