The patch titled acpi: add autoload info to dock driver has been added to the -mm tree. Its filename is acpi-add-autoload-info-to-dock-driver.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: acpi: add autoload info to dock driver From: Frank Seidel <fseidel@xxxxxxx> Add autoload info to dock driver References: https://bugzilla.novell.com/show_bug.cgi?id=302482 Signed-off-by: Thomas Renninger <trenn@xxxxxxxxxx> Signed-off-by: Kay Sievers <kasievers@xxxxxxxxxx> Signed-off-by: Frank Seidel <fseidel@xxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Cc: Kristen Carlson Accardi <kristen.c.accardi@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/acpi/dock.c | 6 ++++++ include/acpi/acpi_drivers.h | 1 + 2 files changed, 7 insertions(+) diff -puN drivers/acpi/dock.c~acpi-add-autoload-info-to-dock-driver drivers/acpi/dock.c --- a/drivers/acpi/dock.c~acpi-add-autoload-info-to-dock-driver +++ a/drivers/acpi/dock.c @@ -51,6 +51,12 @@ static struct atomic_notifier_head dock_ static struct platform_device *dock_device; 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 { acpi_handle handle; unsigned long last_dock_time; diff -puN include/acpi/acpi_drivers.h~acpi-add-autoload-info-to-dock-driver include/acpi/acpi_drivers.h --- a/include/acpi/acpi_drivers.h~acpi-add-autoload-info-to-dock-driver +++ a/include/acpi/acpi_drivers.h @@ -48,6 +48,7 @@ #define ACPI_BUTTON_HID_SLEEPF "LNXSLPBN" #define ACPI_VIDEO_HID "LNXVIDEO" #define ACPI_BAY_HID "LNXIOBAY" +#define ACPI_DOCK_HID "LNXDOCK" /* -------------------------------------------------------------------------- PCI _ Patches currently in -mm which might be from fseidel@xxxxxxx are acpi-fix-autloading-of-dock-video-bay-and-all-linux-specific-hid-drivers.patch acpi-add-autoload-info-to-dock-driver.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html