All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ipmi: Handle device properties with software node API
@ 2021-03-04  9:03 Heikki Krogerus
  2021-03-05 16:28 ` Corey Minyard
  0 siblings, 1 reply; 2+ messages in thread
From: Heikki Krogerus @ 2021-03-04  9:03 UTC (permalink / raw)
  To: Corey Minyard; +Cc: openipmi-developer, linux-kernel

The old device property API is going to be removed.
Replacing the device_add_properties() call with the software
node API equivalent, device_create_managed_software_node().

Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
---
 drivers/char/ipmi/ipmi_plat_data.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/char/ipmi/ipmi_plat_data.c b/drivers/char/ipmi/ipmi_plat_data.c
index 28471ff2a3a3e..747b51ae01a80 100644
--- a/drivers/char/ipmi/ipmi_plat_data.c
+++ b/drivers/char/ipmi/ipmi_plat_data.c
@@ -102,7 +102,7 @@ struct platform_device *ipmi_platform_add(const char *name, unsigned int inst,
 		goto err;
 	}
  add_properties:
-	rv = platform_device_add_properties(pdev, pr);
+	rv = device_create_managed_software_node(&pdev->dev, pr, NULL);
 	if (rv) {
 		dev_err(&pdev->dev,
 			"Unable to add hard-code properties: %d\n", rv);
-- 
2.30.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ipmi: Handle device properties with software node API
  2021-03-04  9:03 [PATCH] ipmi: Handle device properties with software node API Heikki Krogerus
@ 2021-03-05 16:28 ` Corey Minyard
  0 siblings, 0 replies; 2+ messages in thread
From: Corey Minyard @ 2021-03-05 16:28 UTC (permalink / raw)
  To: Heikki Krogerus; +Cc: openipmi-developer, linux-kernel

On Thu, Mar 04, 2021 at 12:03:12PM +0300, Heikki Krogerus wrote:
> The old device property API is going to be removed.
> Replacing the device_add_properties() call with the software
> node API equivalent, device_create_managed_software_node().

Ok, this has been queued for next release.

Thanks,

-corey

> 
> Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> ---
>  drivers/char/ipmi/ipmi_plat_data.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/char/ipmi/ipmi_plat_data.c b/drivers/char/ipmi/ipmi_plat_data.c
> index 28471ff2a3a3e..747b51ae01a80 100644
> --- a/drivers/char/ipmi/ipmi_plat_data.c
> +++ b/drivers/char/ipmi/ipmi_plat_data.c
> @@ -102,7 +102,7 @@ struct platform_device *ipmi_platform_add(const char *name, unsigned int inst,
>  		goto err;
>  	}
>   add_properties:
> -	rv = platform_device_add_properties(pdev, pr);
> +	rv = device_create_managed_software_node(&pdev->dev, pr, NULL);
>  	if (rv) {
>  		dev_err(&pdev->dev,
>  			"Unable to add hard-code properties: %d\n", rv);
> -- 
> 2.30.1
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-03-05 16:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-04  9:03 [PATCH] ipmi: Handle device properties with software node API Heikki Krogerus
2021-03-05 16:28 ` Corey Minyard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.