diff options
author | Len Brown <len.brown@intel.com> | 2010-10-08 22:37:46 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-10-08 22:37:46 -0400 |
commit | 7cfff7f21221725f587ba90bd1acf0e2e0304901 (patch) | |
tree | 28830302ef62264fa3c069313976e6c6daed7a33 /drivers | |
parent | c9933f795c0740eaf97e6291a68a9787346d5997 (diff) | |
parent | 3deb11ef16632fb76daead0db281f6f7d19332f2 (diff) |
Merge branch 'msi-dmi' into release
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/acpi/blacklist.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c index f7619600270a..af308d03f492 100644 --- a/drivers/acpi/blacklist.c +++ b/drivers/acpi/blacklist.c | |||
@@ -204,6 +204,23 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
204 | }, | 204 | }, |
205 | }, | 205 | }, |
206 | { | 206 | { |
207 | /* | ||
208 | * There have a NVIF method in MSI GX723 DSDT need call by Nvidia | ||
209 | * driver (e.g. nouveau) when user press brightness hotkey. | ||
210 | * Currently, nouveau driver didn't do the job and it causes there | ||
211 | * have a infinite while loop in DSDT when user press hotkey. | ||
212 | * We add MSI GX723's dmi information to this table for workaround | ||
213 | * this issue. | ||
214 | * Will remove MSI GX723 from the table after nouveau grows support. | ||
215 | */ | ||
216 | .callback = dmi_disable_osi_vista, | ||
217 | .ident = "MSI GX723", | ||
218 | .matches = { | ||
219 | DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"), | ||
220 | DMI_MATCH(DMI_PRODUCT_NAME, "GX723"), | ||
221 | }, | ||
222 | }, | ||
223 | { | ||
207 | .callback = dmi_disable_osi_vista, | 224 | .callback = dmi_disable_osi_vista, |
208 | .ident = "Sony VGN-NS10J_S", | 225 | .ident = "Sony VGN-NS10J_S", |
209 | .matches = { | 226 | .matches = { |