aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamal Mostafa <[email protected]>2010-05-01 12:09:49 -0700
committerLen Brown <[email protected]>2010-05-20 01:31:00 -0400
commiteeb4bcb4771679d7b3446c0293334faee11b090a (patch)
treea540d4f89ff28a5d96b91294a20264cb10dbc110
parente40152ee1e1c7a63f4777791863215e3faa37a86 (diff)
ACPI: video: fix acpi_backlight=video
Make "acpi_backlight=video" param enable ACPI_VIDEO_BACKLIGHT_FORCE_VIDEO as intended, instead of incorrectly enabling video output switching. BugLink: http://bugs.launchpad.net/bugs/573120 Signed-off-by: Kamal Mostafa <[email protected]> Acked-by: Zhang Rui <[email protected]> Cc: Bjorn Helgaas <[email protected]> Cc: Jiri Kosina <[email protected]> Cc: <[email protected]> Acked-by: Thomas Renninger <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Len Brown <[email protected]>
-rw-r--r--drivers/acpi/video_detect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c
index fc2f26b9b407..c5fef01b3c95 100644
--- a/drivers/acpi/video_detect.c
+++ b/drivers/acpi/video_detect.c
@@ -250,7 +250,7 @@ static int __init acpi_backlight(char *str)
ACPI_VIDEO_BACKLIGHT_FORCE_VENDOR;
if (!strcmp("video", str))
acpi_video_support |=
- ACPI_VIDEO_OUTPUT_SWITCHING_FORCE_VIDEO;
+ ACPI_VIDEO_BACKLIGHT_FORCE_VIDEO;
}
return 1;
}