Windows 8 requires all backlight interfaces to report 101 brightness values, and as a result we're starting to see machines with that many brightness levels in _BCL. For machines which send these notifications when the brightness up/down keys are pressed this means a lot of key presses to get any kind of noticeable change in brightness. For a while now we've had the ability to disable in-kernel handling of notifications via the video.brightness_switch_enabled parameter. Change this to default to off, and let userspace choose more reasonable increments for changing the brightness. Signed-off-by: Seth Forshee <seth.forshee@xxxxxxxxxxxxx> --- drivers/acpi/video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index 6a19bf7..431b22e 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c @@ -69,7 +69,7 @@ MODULE_AUTHOR("Bruno Ducrot"); MODULE_DESCRIPTION("ACPI Video Driver"); MODULE_LICENSE("GPL"); -static bool brightness_switch_enabled = 1; +static bool brightness_switch_enabled = 0; module_param(brightness_switch_enabled, bool, 0644); /* -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html