The patch titled ACPI: dock: Send key=value pair instead of plain value has been added to the -mm tree. Its filename is acpi-dock-send-key=value-pair-instead-of-plain-value.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: dock: Send key=value pair instead of plain value From: Holger Macht <hmacht@xxxxxxx> Send key=value pair along with the uevent instead of a plain value so that userspace (udev) can handle it like common environment variables. Signed-off-by: Holger Macht <hmacht@xxxxxxx> Acked-by: Kristen Carlson Accardi <kristen.c.accardi@xxxxxxxxx> Cc: Stephan Berberig <s.berberig@xxxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/acpi/dock.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/acpi/dock.c~acpi-dock-send-key=value-pair-instead-of-plain-value drivers/acpi/dock.c --- a/drivers/acpi/dock.c~acpi-dock-send-key=value-pair-instead-of-plain-value +++ a/drivers/acpi/dock.c @@ -336,13 +336,13 @@ static void hotplug_dock_devices(struct static void dock_event(struct dock_station *ds, u32 event, int num) { struct device *dev = &dock_device->dev; - char event_string[7]; + char event_string[13]; char *envp[] = { event_string, NULL }; if (num == UNDOCK_EVENT) - sprintf(event_string, "UNDOCK"); + sprintf(event_string, "EVENT=undock"); else - sprintf(event_string, "DOCK"); + sprintf(event_string, "EVENT=dock"); /* * Indicate that the status of the dock station has _ Patches currently in -mm which might be from hmacht@xxxxxxx are acpi-dock-send-key=value-pair-instead-of-plain-value.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