12345678910111213141516171819202122232425262728293031 |
- #ifndef __ASM_R4K_TYPES_H
- #define __ASM_R4K_TYPES_H
- #include <linux/compiler.h>
- #ifdef CONFIG_SYNC_R4K
- extern void synchronise_count_master(int cpu);
- extern void synchronise_count_slave(int cpu);
- #else
- static inline void synchronise_count_master(int cpu)
- {
- }
- static inline void synchronise_count_slave(int cpu)
- {
- }
- #endif
- #endif
|