Commit 9453ece9 authored by Patrick Mochel's avatar Patrick Mochel Committed by Len Brown

ACPI: acpi_memhotplug: Remove unneeded acpi_handle from driver.

Signed-off-by: default avatarPatrick Mochel <mochel@linux.intel.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 1b5b8b81
...@@ -80,7 +80,6 @@ struct acpi_memory_info { ...@@ -80,7 +80,6 @@ struct acpi_memory_info {
}; };
struct acpi_memory_device { struct acpi_memory_device {
acpi_handle handle;
struct acpi_device * device; struct acpi_device * device;
unsigned int state; /* State of the memory device */ unsigned int state; /* State of the memory device */
struct list_head res_list; struct list_head res_list;
...@@ -399,7 +398,6 @@ static int acpi_memory_device_add(struct acpi_device *device) ...@@ -399,7 +398,6 @@ static int acpi_memory_device_add(struct acpi_device *device)
memset(mem_device, 0, sizeof(struct acpi_memory_device)); memset(mem_device, 0, sizeof(struct acpi_memory_device));
INIT_LIST_HEAD(&mem_device->res_list); INIT_LIST_HEAD(&mem_device->res_list);
mem_device->device->handle = device->handle;
mem_device->device = device; mem_device->device = device;
sprintf(acpi_device_name(device), "%s", ACPI_MEMORY_DEVICE_NAME); sprintf(acpi_device_name(device), "%s", ACPI_MEMORY_DEVICE_NAME);
sprintf(acpi_device_class(device), "%s", ACPI_MEMORY_DEVICE_CLASS); sprintf(acpi_device_class(device), "%s", ACPI_MEMORY_DEVICE_CLASS);
......
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