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