mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
ACPI: video: Remove unneeded acpi_handle from driver.
Signed-off-by: Patrick Mochel <mochel@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
8a4444bf5a
commit
d07a8577f6
1 changed files with 0 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue