1 /* Public domain. */ 2 3 #ifndef _LINUX_PM_QOS_H 4 #define _LINUX_PM_QOS_H 5 6 struct pm_qos_request { 7 }; 8 9 #define PM_QOS_DEFAULT_VALUE -1 10 11 static inline void 12 cpu_latency_qos_update_request(struct pm_qos_request *r, int v) 13 { 14 } 15 16 static inline void 17 cpu_latency_qos_add_request(struct pm_qos_request *r, int v) 18 { 19 } 20 21 static inline void 22 cpu_latency_qos_remove_request(struct pm_qos_request *r) 23 { 24 } 25 26 static inline bool 27 cpu_latency_qos_request_active(struct pm_qos_request *r) 28 { 29 return false; 30 } 31 32 #endif 33