From: Bartosz Golaszewski <bgolaszewski@xxxxxxxxxxxx> The early platform driver mechanism will use this function as the device release callback. Make it available in drivers/base. Signed-off-by: Bartosz Golaszewski <bgolaszewski@xxxxxxxxxxxx> --- drivers/base/base.h | 1 + drivers/base/platform.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/base/base.h b/drivers/base/base.h index 7a72ae72a98e..514a6d198f14 100644 --- a/drivers/base/base.h +++ b/drivers/base/base.h @@ -164,3 +164,4 @@ extern void device_links_unbind_consumers(struct device *dev); /* Platform device helpers. */ extern int platform_match(struct device *dev, struct device_driver *drv); +extern void platform_device_release(struct device *dev); diff --git a/drivers/base/platform.c b/drivers/base/platform.c index 0ba4effb9618..417ab6071350 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c @@ -239,7 +239,7 @@ void platform_device_put(struct platform_device *pdev) } EXPORT_SYMBOL_GPL(platform_device_put); -static void platform_device_release(struct device *dev) +void platform_device_release(struct device *dev) { struct platform_object *pa = container_of(dev, struct platform_object, pdev.dev); -- 2.17.0 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html