Commit c053c4eb authored by Heikki Krogerus's avatar Heikki Krogerus Committed by Corey Minyard
Browse files

ipmi: Handle device properties with software node API



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: default avatarHeikki Krogerus <heikki.krogerus@linux.intel.com>
Message-Id: <20210304090312.26827-1-heikki.krogerus@linux.intel.com>
Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
parent dcd10526
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);