mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
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:
parent
dcd10526ac
commit
c053c4eb5a
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user