The patch titled sony_acpi: add lanpower and audiopower controls has been added to the -mm tree. Its filename is sony_acpi-add-lanpower-and-audiopower-controls.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: sony_acpi: add lanpower and audiopower controls From: Mattia Dongili <malattia@xxxxxxxx> audiopower works well on my SZ72B so it's not marked has "debug" while lanpower has at least one report of not resuming power happily so morked as "debug" Signed-off-by: Mattia Dongili <malattia@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/acpi/sony_acpi.c | 20 ++++++++++++++++++-- 1 files changed, 18 insertions(+), 2 deletions(-) diff -puN drivers/acpi/sony_acpi.c~sony_acpi-add-lanpower-and-audiopower-controls drivers/acpi/sony_acpi.c --- a/drivers/acpi/sony_acpi.c~sony_acpi-add-lanpower-and-audiopower-controls +++ a/drivers/acpi/sony_acpi.c @@ -102,11 +102,27 @@ static struct sony_acpi_value { .name = "cdpower", .acpiget = "GCDP", .acpiset = "SCDP", - .min = -1, - .max = -1, + .min = 0, + .max = 1, .debug = 0, }, { + .name = "audiopower", + .acpiget = "GAZP", + .acpiset = "AZPW", + .min = 0, + .max = 1, + .debug = 0, + }, + { + .name = "lanpower", + .acpiget = "GLNP", + .acpiset = "LNPW", + .min = 0, + .max = 1, + .debug = 1, + }, + { .name = "PID", .acpiget = "GPID", .debug = 1, _ Patches currently in -mm which might be from malattia@xxxxxxxx are sony_acpi-addacpi_bus_generate-event.patch sony_acpi-addacpi_bus_generate-event-fix.patch sony_acpi-add-lanpower-and-audiopower-controls.patch allow-multiple-sony_acpi_values-for-the-same-name.patch fix-sony_acpi-backlight-registration-and-unregistration.patch rewrite-lock-in-cpufreq-to-eliminate-cpufreq-hotplug-related-issues-fix-3.patch fix-x86_64-mm-i386-config-core2.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