From f81512963820154e5c3b648d05126b5f8c926e31 Mon Sep 17 00:00:00 2001 From: Zhang Rui Date: Tue, 4 Dec 2012 23:30:19 +0100 Subject: [PATCH] --- yaml --- r: 336799 b: refs/heads/master c: 129ff8f8d58297b04f47b5d6fad81aa2d08404e1 h: refs/heads/master i: 336797: b58e9e0a58433995ca8a530047d68b0fe978d2c6 336795: c7da9414d070e75aa842dcb8600c147df896d820 336791: 336378faab8f7ea8d510220d719b772ce6689e8a 336783: 306e3cad3cd66ff439bd7fd1d8452972f0484d4a 336767: 2bedc832e08c4d723644e56a424ddf68d410d97f v: v3 --- [refs] | 2 +- trunk/drivers/acpi/video.c | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index 004e2b8a092f..a4b18c9dda1d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: b7e383046c2c7c13ad928cd7407eafff758ddd4b +refs/heads/master: 129ff8f8d58297b04f47b5d6fad81aa2d08404e1 diff --git a/trunk/drivers/acpi/video.c b/trunk/drivers/acpi/video.c index 0230cb6cbb3a..ac9a69cd45f5 100644 --- a/trunk/drivers/acpi/video.c +++ b/trunk/drivers/acpi/video.c @@ -389,6 +389,12 @@ static int __init video_set_bqc_offset(const struct dmi_system_id *d) return 0; } +static int video_ignore_initial_backlight(const struct dmi_system_id *d) +{ + use_bios_initial_backlight = 0; + return 0; +} + static struct dmi_system_id video_dmi_table[] __initdata = { /* * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121 @@ -433,6 +439,14 @@ static struct dmi_system_id video_dmi_table[] __initdata = { DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"), }, }, + { + .callback = video_ignore_initial_backlight, + .ident = "HP Folio 13-2000", + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"), + DMI_MATCH(DMI_PRODUCT_NAME, "HP Folio 13 - 2000 Notebook PC"), + }, + }, {} };