1 /* 2 * (C) 2010,2011 Thomas Renninger <trenn@suse.de>, Novell Inc. 3 * 4 * Licensed under the terms of the GNU GPL License version 2. 5 * 6 * Based on the idea from Michael Matz <matz@suse.de> 7 * 8 */ 9 10 #ifndef _CPUIDLE_IDLE_MONITORS_H_ 11 #define _CPUIDLE_IDLE_MONITORS_H_ 12 13 #define DEF(x) extern struct cpuidle_monitor x ##_monitor; 14 #include "idle_monitors.def" 15 #undef DEF 16 extern struct cpuidle_monitor *all_monitors[]; 17 18 #endif /* _CPUIDLE_IDLE_MONITORS_H_ */ 19