Chen, Gong | d963cd9 | 2014-06-11 14:02:20 -0700 | [diff] [blame] | 1 | #ifndef __RAS_H__ |
2 | #define __RAS_H__ | ||||
3 | |||||
4 | #ifdef CONFIG_DEBUG_FS | ||||
5 | int ras_userspace_consumers(void); | ||||
6 | void ras_debugfs_init(void); | ||||
7 | int ras_add_daemon_trace(void); | ||||
8 | #else | ||||
9 | static inline int ras_userspace_consumers(void) { return 0; } | ||||
10 | static inline void ras_debugfs_init(void) { return; } | ||||
11 | static inline int ras_add_daemon_trace(void) { return 0; } | ||||
12 | #endif | ||||
13 | |||||
14 | #endif |