2014-07-28 17:04:55 +00:00
|
|
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
|
|
|
Date: Mon, 28 Jul 2014 12:59:48 -0400
|
|
|
|
Subject: [PATCH] Revert "Revert "ACPI / video: change acpi-video
|
|
|
|
brightness_switch_enabled default to 0""
|
|
|
|
|
|
|
|
This reverts commit 2843768b701971ab10e62c77d5c75ad7c306f1bd.
|
2014-08-20 17:22:24 +00:00
|
|
|
|
|
|
|
Bugzilla: N/A
|
|
|
|
Upstream-status: Sigh. We almost got to drop this.
|
|
|
|
|
|
|
|
Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org>
|
2014-07-28 17:04:55 +00:00
|
|
|
---
|
|
|
|
Documentation/kernel-parameters.txt | 2 +-
|
|
|
|
drivers/acpi/video.c | 2 +-
|
|
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
|
2015-02-16 15:01:09 +00:00
|
|
|
index bfcb1a62a7b4..a1d62e9ed29b 100644
|
2014-07-28 17:04:55 +00:00
|
|
|
--- a/Documentation/kernel-parameters.txt
|
|
|
|
+++ b/Documentation/kernel-parameters.txt
|
2015-02-16 15:01:09 +00:00
|
|
|
@@ -3822,7 +3822,7 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
|
2014-07-28 17:04:55 +00:00
|
|
|
the allocated input device; If set to 0, video driver
|
|
|
|
will only send out the event without touching backlight
|
|
|
|
brightness level.
|
|
|
|
- default: 1
|
|
|
|
+ default: 0
|
|
|
|
|
|
|
|
virtio_mmio.device=
|
|
|
|
[VMMIO] Memory mapped virtio (platform) device.
|
|
|
|
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
|
2015-03-06 20:18:56 +00:00
|
|
|
index 26eb70c8f518..db70d550f526 100644
|
2014-07-28 17:04:55 +00:00
|
|
|
--- a/drivers/acpi/video.c
|
|
|
|
+++ b/drivers/acpi/video.c
|
|
|
|
@@ -68,7 +68,7 @@ MODULE_AUTHOR("Bruno Ducrot");
|
|
|
|
MODULE_DESCRIPTION("ACPI Video Driver");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
|
|
|
-static bool brightness_switch_enabled = 1;
|
|
|
|
+static bool brightness_switch_enabled;
|
|
|
|
module_param(brightness_switch_enabled, bool, 0644);
|
|
|
|
|
|
|
|
/*
|
|
|
|
--
|
2014-12-09 14:25:39 +00:00
|
|
|
2.1.0
|
2014-07-28 17:04:55 +00:00
|
|
|
|