diff options
| author | Grant Likely <grant.likely@secretlab.ca> | 2010-07-22 15:59:23 -0400 |
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2010-07-24 11:58:21 -0400 |
| commit | 94a0cb1fc61ab7a0d47d268a7764374efeb2160b (patch) | |
| tree | c7da45e6023c77471e18215fb14eab1bc83739fa /include | |
| parent | c1b6d380b781b5238989a4bfba02450057670804 (diff) | |
of/device: Replace of_device with platform_device in includes and core code
of_device is currently just an #define alias to platform_device until it
gets removed entirely. This patch removes references to it from the
include directories and the core drivers/of code.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/of_device.h | 10 | ||||
| -rw-r--r-- | include/linux/of_platform.h | 16 |
2 files changed, 13 insertions, 13 deletions
diff --git a/include/linux/of_device.h b/include/linux/of_device.h index 0f1911994559..e11a0be7893a 100644 --- a/include/linux/of_device.h +++ b/include/linux/of_device.h | |||
| @@ -39,14 +39,14 @@ static inline int of_driver_match_device(const struct device *dev, | |||
| 39 | return of_match_device(drv->of_match_table, dev) != NULL; | 39 | return of_match_device(drv->of_match_table, dev) != NULL; |
| 40 | } | 40 | } |
| 41 | 41 | ||
| 42 | extern struct of_device *of_dev_get(struct of_device *dev); | 42 | extern struct platform_device *of_dev_get(struct platform_device *dev); |
| 43 | extern void of_dev_put(struct of_device *dev); | 43 | extern void of_dev_put(struct platform_device *dev); |
| 44 | 44 | ||
| 45 | extern int of_device_register(struct of_device *ofdev); | 45 | extern int of_device_register(struct platform_device *ofdev); |
| 46 | extern void of_device_unregister(struct of_device *ofdev); | 46 | extern void of_device_unregister(struct platform_device *ofdev); |
| 47 | extern void of_release_dev(struct device *dev); | 47 | extern void of_release_dev(struct device *dev); |
| 48 | 48 | ||
| 49 | static inline void of_device_free(struct of_device *dev) | 49 | static inline void of_device_free(struct platform_device *dev) |
| 50 | { | 50 | { |
| 51 | of_release_dev(&dev->dev); | 51 | of_release_dev(&dev->dev); |
| 52 | } | 52 | } |
diff --git a/include/linux/of_platform.h b/include/linux/of_platform.h index a79f59bf61a0..b24c5a5b0426 100644 --- a/include/linux/of_platform.h +++ b/include/linux/of_platform.h | |||
| @@ -27,13 +27,13 @@ extern const struct of_device_id of_default_bus_ids[]; | |||
| 27 | */ | 27 | */ |
| 28 | struct of_platform_driver | 28 | struct of_platform_driver |
| 29 | { | 29 | { |
| 30 | int (*probe)(struct of_device* dev, | 30 | int (*probe)(struct platform_device* dev, |
| 31 | const struct of_device_id *match); | 31 | const struct of_device_id *match); |
| 32 | int (*remove)(struct of_device* dev); | 32 | int (*remove)(struct platform_device* dev); |
| 33 | 33 | ||
| 34 | int (*suspend)(struct of_device* dev, pm_message_t state); | 34 | int (*suspend)(struct platform_device* dev, pm_message_t state); |
| 35 | int (*resume)(struct of_device* dev); | 35 | int (*resume)(struct platform_device* dev); |
| 36 | int (*shutdown)(struct of_device* dev); | 36 | int (*shutdown)(struct platform_device* dev); |
| 37 | 37 | ||
| 38 | struct device_driver driver; | 38 | struct device_driver driver; |
| 39 | struct platform_driver platform_driver; | 39 | struct platform_driver platform_driver; |
| @@ -49,16 +49,16 @@ extern void of_unregister_driver(struct of_platform_driver *drv); | |||
| 49 | extern int of_register_platform_driver(struct of_platform_driver *drv); | 49 | extern int of_register_platform_driver(struct of_platform_driver *drv); |
| 50 | extern void of_unregister_platform_driver(struct of_platform_driver *drv); | 50 | extern void of_unregister_platform_driver(struct of_platform_driver *drv); |
| 51 | 51 | ||
| 52 | extern struct of_device *of_device_alloc(struct device_node *np, | 52 | extern struct platform_device *of_device_alloc(struct device_node *np, |
| 53 | const char *bus_id, | 53 | const char *bus_id, |
| 54 | struct device *parent); | 54 | struct device *parent); |
| 55 | extern struct of_device *of_find_device_by_node(struct device_node *np); | 55 | extern struct platform_device *of_find_device_by_node(struct device_node *np); |
| 56 | 56 | ||
| 57 | extern int of_bus_type_init(struct bus_type *bus, const char *name); | 57 | extern int of_bus_type_init(struct bus_type *bus, const char *name); |
| 58 | 58 | ||
| 59 | #if !defined(CONFIG_SPARC) /* SPARC has its own device registration method */ | 59 | #if !defined(CONFIG_SPARC) /* SPARC has its own device registration method */ |
| 60 | /* Platform devices and busses creation */ | 60 | /* Platform devices and busses creation */ |
| 61 | extern struct of_device *of_platform_device_create(struct device_node *np, | 61 | extern struct platform_device *of_platform_device_create(struct device_node *np, |
| 62 | const char *bus_id, | 62 | const char *bus_id, |
| 63 | struct device *parent); | 63 | struct device *parent); |
| 64 | 64 | ||
