Skip to content
Snippets Groups Projects
Commit d07a8577 authored by Patrick Mochel's avatar Patrick Mochel Committed by Len Brown
Browse files

ACPI: video: Remove unneeded acpi_handle from driver.

parent 8a4444bf
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,6 @@ struct acpi_video_enumerated_device {
};
struct acpi_video_bus {
acpi_handle handle;
struct acpi_device *device;
u8 dos_setting;
struct acpi_video_enumerated_device *attached_array;
......@@ -156,7 +155,6 @@ struct acpi_video_device_brightness {
};
struct acpi_video_device {
acpi_handle handle;
unsigned long device_id;
struct acpi_video_device_flags flags;
struct acpi_video_device_cap cap;
......@@ -1271,7 +1269,6 @@ acpi_video_bus_get_one_device(struct acpi_device *device,
memset(data, 0, sizeof(struct acpi_video_device));
data->handle = device->handle;
strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
acpi_driver_data(device) = data;
......@@ -1704,7 +1701,6 @@ static int acpi_video_bus_add(struct acpi_device *device)
return -ENOMEM;
memset(video, 0, sizeof(struct acpi_video_bus));
video->handle = device->handle;
video->device = device;
strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment