aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firmware/efi
diff options
context:
space:
mode:
authorHeikki Krogerus <heikki.krogerus@linux.intel.com>2021-03-04 11:28:37 +0300
committerArd Biesheuvel <ardb@kernel.org>2021-05-22 14:06:59 +0200
commit55fc610c8cdae353737dbc2d59febd3c1a697095 (patch)
tree5d93a837b36d34a0d361238d74d8738867b9a520 /drivers/firmware/efi
parentefi: cper: fix snprintf() use in cper_dimm_err_location() (diff)
downloadlinux-dev-55fc610c8cdae353737dbc2d59febd3c1a697095.tar.xz
linux-dev-55fc610c8cdae353737dbc2d59febd3c1a697095.zip
efi/apple-properties: 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> Acked-by: Lukas Wunner <lukas@wunner.de> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'drivers/firmware/efi')
-rw-r--r--drivers/firmware/efi/apple-properties.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/efi/apple-properties.c b/drivers/firmware/efi/apple-properties.c
index e1926483ae2f..4c3201e290e2 100644
--- a/drivers/firmware/efi/apple-properties.c
+++ b/drivers/firmware/efi/apple-properties.c
@@ -157,7 +157,7 @@ static int __init unmarshal_devices(struct properties_header *properties)
if (!entry[0].name)
goto skip_device;
- ret = device_add_properties(dev, entry); /* makes deep copy */
+ ret = device_create_managed_software_node(dev, entry, NULL);
if (ret)
dev_err(dev, "error %d assigning properties\n", ret);