ACPI: Add autoload info to dock driver
References: https://bugzilla.novell.com/show_bug.cgi?id=302482 Signed-off-by: Thomas Renninger <trenn@novell.com> Signed-off-by: Kay Sievers <kasievers@novell.com> Signed-off-by: Frank Seidel <fseidel@suse.de> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
3620f2f2f3
commit
a340af14b4
2 changed files with 7 additions and 0 deletions
|
@ -51,6 +51,12 @@ static struct atomic_notifier_head dock_notifier_list;
|
||||||
static struct platform_device *dock_device;
|
static struct platform_device *dock_device;
|
||||||
static char dock_device_name[] = "dock";
|
static char dock_device_name[] = "dock";
|
||||||
|
|
||||||
|
static const struct acpi_device_id dock_device_ids[] = {
|
||||||
|
{"LNXDOCK", 0},
|
||||||
|
{"", 0},
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(acpi, dock_device_ids);
|
||||||
|
|
||||||
struct dock_station {
|
struct dock_station {
|
||||||
acpi_handle handle;
|
acpi_handle handle;
|
||||||
unsigned long last_dock_time;
|
unsigned long last_dock_time;
|
||||||
|
|
|
@ -48,6 +48,7 @@
|
||||||
#define ACPI_BUTTON_HID_SLEEPF "LNXSLPBN"
|
#define ACPI_BUTTON_HID_SLEEPF "LNXSLPBN"
|
||||||
#define ACPI_VIDEO_HID "LNXVIDEO"
|
#define ACPI_VIDEO_HID "LNXVIDEO"
|
||||||
#define ACPI_BAY_HID "LNXIOBAY"
|
#define ACPI_BAY_HID "LNXIOBAY"
|
||||||
|
#define ACPI_DOCK_HID "LNXDOCK"
|
||||||
|
|
||||||
/* --------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------
|
||||||
PCI
|
PCI
|
||||||
|
|
Loading…
Reference in a new issue