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