From: Alessandro Guido Enable the sony_acpi driver to use the backlight subsysyem for adjusting the monitor brightness. Old way of changing the brightness will be still available for compatibility with existing tools. Signed-off-by: Alessandro Guido Signed-off-by: Andrew Morton --- drivers/acpi/sony_acpi.c | 8 ++++++++ 1 files changed, 8 insertions(+) diff -puN drivers/acpi/sony_acpi.c~acpi-add-backlight-support-to-the-sony_acpi-v2 drivers/acpi/sony_acpi.c --- a/drivers/acpi/sony_acpi.c~acpi-add-backlight-support-to-the-sony_acpi-v2 +++ a/drivers/acpi/sony_acpi.c @@ -77,6 +77,14 @@ static struct sony_acpi_value { int debug; /* active only in debug mode ? */ } sony_acpi_values[] = { { + .name = "brightness", + .acpiget = "GBRT", + .acpiset = "SBRT", + .min = 1, + .max = SONY_MAX_BRIGHTNESS, + .debug = 0, + }, + { .name = "brightness_default", .acpiget = "GPBR", .acpiset = "SPBR", _