of_device.h 815 B

1234567891011121314151617181920212223242526
  1. #ifndef _LINUX_OF_DEVICE_H
  2. #define _LINUX_OF_DEVICE_H
  3. #ifdef __KERNEL__
  4. #include <linux/device.h>
  5. #include <linux/of.h>
  6. #include <linux/mod_devicetable.h>
  7. #include <asm/of_device.h>
  8. #define to_of_device(d) container_of(d, struct of_device, dev)
  9. extern const struct of_device_id *of_match_node(
  10. const struct of_device_id *matches, const struct device_node *node);
  11. extern const struct of_device_id *of_match_device(
  12. const struct of_device_id *matches, const struct of_device *dev);
  13. extern struct of_device *of_dev_get(struct of_device *dev);
  14. extern void of_dev_put(struct of_device *dev);
  15. extern int of_device_register(struct of_device *ofdev);
  16. extern void of_device_unregister(struct of_device *ofdev);
  17. extern void of_release_dev(struct device *dev);
  18. #endif /* __KERNEL__ */
  19. #endif /* _LINUX_OF_DEVICE_H */