xref: /dflybsd-src/sys/dev/drm/include/linux/pm_qos.h (revision 81a2a032113c33b249e0b55ffe55796b574ba612)
1*81a2a032SFrançois Tigeot /*
2*81a2a032SFrançois Tigeot  * Copyright (c) 2015 François Tigeot
3*81a2a032SFrançois Tigeot  * All rights reserved.
4*81a2a032SFrançois Tigeot  *
5*81a2a032SFrançois Tigeot  * Redistribution and use in source and binary forms, with or without
6*81a2a032SFrançois Tigeot  * modification, are permitted provided that the following conditions
7*81a2a032SFrançois Tigeot  * are met:
8*81a2a032SFrançois Tigeot  * 1. Redistributions of source code must retain the above copyright
9*81a2a032SFrançois Tigeot  *    notice unmodified, this list of conditions, and the following
10*81a2a032SFrançois Tigeot  *    disclaimer.
11*81a2a032SFrançois Tigeot  * 2. Redistributions in binary form must reproduce the above copyright
12*81a2a032SFrançois Tigeot  *    notice, this list of conditions and the following disclaimer in the
13*81a2a032SFrançois Tigeot  *    documentation and/or other materials provided with the distribution.
14*81a2a032SFrançois Tigeot  *
15*81a2a032SFrançois Tigeot  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16*81a2a032SFrançois Tigeot  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17*81a2a032SFrançois Tigeot  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18*81a2a032SFrançois Tigeot  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19*81a2a032SFrançois Tigeot  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20*81a2a032SFrançois Tigeot  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21*81a2a032SFrançois Tigeot  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22*81a2a032SFrançois Tigeot  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23*81a2a032SFrançois Tigeot  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24*81a2a032SFrançois Tigeot  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25*81a2a032SFrançois Tigeot  */
26*81a2a032SFrançois Tigeot 
27*81a2a032SFrançois Tigeot #ifndef _LINUX_PM_QOS_H_
28*81a2a032SFrançois Tigeot #define _LINUX_PM_QOS_H_
29*81a2a032SFrançois Tigeot 
30*81a2a032SFrançois Tigeot struct pm_qos_request {
31*81a2a032SFrançois Tigeot };
32*81a2a032SFrançois Tigeot 
33*81a2a032SFrançois Tigeot #define pm_qos_add_request(a,b,c)
34*81a2a032SFrançois Tigeot #define pm_qos_update_request(a,b)
35*81a2a032SFrançois Tigeot #define pm_qos_remove_request(a)
36*81a2a032SFrançois Tigeot 
37*81a2a032SFrançois Tigeot #endif	/* _LINUX_PM_QOS_H_ */
38