Skip to content

Commit

Permalink
ACPI: video: Remove unneeded acpi_handle from driver.
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Mochel <mochel@linux.intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Patrick Mochel authored and Len Brown committed Jun 30, 2006
1 parent 8a4444b commit d07a857
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions drivers/acpi/video.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit d07a857

Please sign in to comment.