xref: /openbsd-src/sys/dev/pci/drm/include/linux/of_platform.h (revision 3d61058aa5c692477b6d18acfbbdb653a9930ff9)
1 /* Public domain. */
2 
3 #ifndef _LINUX_OF_PLATFORM_H
4 #define _LINUX_OF_PLATFORM_H
5 
6 struct platform_device *of_platform_device_create(struct device_node *,
7 	    const char *, struct device *);
8 struct platform_device *of_find_device_by_node(struct device_node *);
9 
10 #define of_platform_device_destroy(a, b)
11 
12 #endif
13