Message ID | 20211115121001.77041-3-heikki.krogerus@linux.intel.com (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | Bjorn Helgaas |
Headers | show |
Series | device property: Remove device_add_properties() | expand |
On Mon, Nov 15, 2021 at 03:10:00PM +0300, Heikki Krogerus wrote: > All the drivers that relied on device_del() to call > device_remove_properties() have now been converted to either > use device_create_managed_software_node() instead of > device_add_properties(), or to register the software node > completely separately from the device. > > This will make it finally possible to share and reuse the > software nodes that hold the additional device properties. Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> > Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> > --- > drivers/base/core.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/base/core.c b/drivers/base/core.c > index fd034d7424472..a40b6fb1ebb01 100644 > --- a/drivers/base/core.c > +++ b/drivers/base/core.c > @@ -3582,7 +3582,6 @@ void device_del(struct device *dev) > device_pm_remove(dev); > driver_deferred_probe_del(dev); > device_platform_notify_remove(dev); > - device_remove_properties(dev); > device_links_purge(dev); > > if (dev->bus) > -- > 2.33.0 >
diff --git a/drivers/base/core.c b/drivers/base/core.c index fd034d7424472..a40b6fb1ebb01 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c @@ -3582,7 +3582,6 @@ void device_del(struct device *dev) device_pm_remove(dev); driver_deferred_probe_del(dev); device_platform_notify_remove(dev); - device_remove_properties(dev); device_links_purge(dev); if (dev->bus)
All the drivers that relied on device_del() to call device_remove_properties() have now been converted to either use device_create_managed_software_node() instead of device_add_properties(), or to register the software node completely separately from the device. This will make it finally possible to share and reuse the software nodes that hold the additional device properties. Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> --- drivers/base/core.c | 1 - 1 file changed, 1 deletion(-)