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: Heikki Krogerus <heikki.krogerus@linux.intel.com> Message-Id: <20210304090312.26827-1-heikki.krogerus@linux.intel.com> Signed-off-by: Corey Minyard <cminyard@mvista.com>
This commit is contained in:
committed by
Corey Minyard
parent
dcd10526ac
commit
c053c4eb5a
@@ -102,7 +102,7 @@ struct platform_device *ipmi_platform_add(const char *name, unsigned int inst,
|
|||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
add_properties:
|
add_properties:
|
||||||
rv = platform_device_add_properties(pdev, pr);
|
rv = device_create_managed_software_node(&pdev->dev, pr, NULL);
|
||||||
if (rv) {
|
if (rv) {
|
||||||
dev_err(&pdev->dev,
|
dev_err(&pdev->dev,
|
||||||
"Unable to add hard-code properties: %d\n", rv);
|
"Unable to add hard-code properties: %d\n", rv);
|
||||||
|
|||||||
Reference in New Issue
Block a user