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