Commit 7b11e898 authored by Mario Limonciello's avatar Mario Limonciello Committed by Darren Hart (VMware)

platform/x86: wmi: Destroy on cleanup rather than unregister

device_create documentation says to cleanup using device_destroy
Signed-off-by: default avatarMario Limonciello <mario.limonciello@dell.com>
Signed-off-by: default avatarDarren Hart (VMware) <dvhart@infradead.org>
parent 303d1fcc
......@@ -1145,7 +1145,7 @@ static int acpi_wmi_remove(struct platform_device *device)
acpi_remove_address_space_handler(acpi_device->handle,
ACPI_ADR_SPACE_EC, &acpi_wmi_ec_space_handler);
wmi_free_devices(acpi_device);
device_unregister((struct device *)dev_get_drvdata(&device->dev));
device_destroy(&wmi_bus_class, MKDEV(0, 0));
return 0;
}
......@@ -1199,7 +1199,7 @@ static int acpi_wmi_probe(struct platform_device *device)
return 0;
err_remove_busdev:
device_unregister(wmi_bus_dev);
device_destroy(&wmi_bus_class, MKDEV(0, 0));
err_remove_notify_handler:
acpi_remove_notify_handler(acpi_device->handle, ACPI_DEVICE_NOTIFY,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment