Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 1 | #ifndef _LINUX_OF_DEVICE_H |
| 2 | #define _LINUX_OF_DEVICE_H |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 3 | |
Grant Likely | efb2e01 | 2010-04-13 16:12:27 -0700 | [diff] [blame] | 4 | #ifdef CONFIG_OF_DEVICE |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 5 | #include <linux/device.h> |
| 6 | #include <linux/of.h> |
| 7 | #include <linux/mod_devicetable.h> |
| 8 | |
| 9 | #include <asm/of_device.h> |
| 10 | |
| 11 | #define to_of_device(d) container_of(d, struct of_device, dev) |
| 12 | |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 13 | extern const struct of_device_id *of_match_device( |
Grant Likely | 44504b2 | 2010-04-13 16:13:22 -0700 | [diff] [blame] | 14 | const struct of_device_id *matches, const struct device *dev); |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 15 | |
| 16 | extern struct of_device *of_dev_get(struct of_device *dev); |
| 17 | extern void of_dev_put(struct of_device *dev); |
| 18 | |
| 19 | extern int of_device_register(struct of_device *ofdev); |
| 20 | extern void of_device_unregister(struct of_device *ofdev); |
| 21 | extern void of_release_dev(struct device *dev); |
| 22 | |
Joachim Fenkes | fec738d | 2007-09-26 19:44:12 +1000 | [diff] [blame] | 23 | static inline void of_device_free(struct of_device *dev) |
| 24 | { |
| 25 | of_release_dev(&dev->dev); |
| 26 | } |
| 27 | |
Stephen Rothwell | 09e67ca | 2008-05-16 11:57:45 +1000 | [diff] [blame] | 28 | extern ssize_t of_device_get_modalias(struct of_device *ofdev, |
| 29 | char *str, ssize_t len); |
Grant Likely | efb2e01 | 2010-04-13 16:12:27 -0700 | [diff] [blame] | 30 | #endif /* CONFIG_OF_DEVICE */ |
Stephen Rothwell | 09e67ca | 2008-05-16 11:57:45 +1000 | [diff] [blame] | 31 | |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 32 | #endif /* _LINUX_OF_DEVICE_H */ |