diff options
author | Rob Herring <rob.herring@calxeda.com> | 2013-04-21 17:38:31 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@linaro.org> | 2013-06-12 07:37:16 -0400 |
commit | 10dbc5e39a60944536f3ca59bc9a8a8896355714 (patch) | |
tree | 586d7c920d11ef3084c850792f7cec8d6952f78d /include | |
parent | 8d561b60a9174defff2e48e109f68a5f2ae7dd9c (diff) |
driver core: move to_platform_driver to platform_device.h
In converting the last remaining of_platform_driver (ibmebus) to a regular
platform driver, to_platform_driver is needed to replace
to_of_platform_driver.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Tested-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/platform_device.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/platform_device.h b/include/linux/platform_device.h index 9abf1db6aea6..3413897474e1 100644 --- a/include/linux/platform_device.h +++ b/include/linux/platform_device.h | |||
@@ -180,6 +180,9 @@ struct platform_driver { | |||
180 | const struct platform_device_id *id_table; | 180 | const struct platform_device_id *id_table; |
181 | }; | 181 | }; |
182 | 182 | ||
183 | #define to_platform_driver(drv) (container_of((drv), struct platform_driver, \ | ||
184 | driver)) | ||
185 | |||
183 | extern int platform_driver_register(struct platform_driver *); | 186 | extern int platform_driver_register(struct platform_driver *); |
184 | extern void platform_driver_unregister(struct platform_driver *); | 187 | extern void platform_driver_unregister(struct platform_driver *); |
185 | 188 | ||