aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/osi.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/acpi/osi.c b/drivers/acpi/osi.c
index 76998a51bf99..8a8f43568510 100644
--- a/drivers/acpi/osi.c
+++ b/drivers/acpi/osi.c
@@ -57,6 +57,15 @@ osi_setup_entries[OSI_STRING_ENTRIES_MAX] __initdata = {
57 {"Processor Device", true}, 57 {"Processor Device", true},
58 {"3.0 _SCP Extensions", true}, 58 {"3.0 _SCP Extensions", true},
59 {"Processor Aggregator Device", true}, 59 {"Processor Aggregator Device", true},
60 /*
61 * Linux-Dell-Video is used by BIOS to disable RTD3 for NVidia graphics
62 * cards as RTD3 is not supported by drivers now. Systems with NVidia
63 * cards will hang without RTD3 disabled.
64 *
65 * Once NVidia drivers officially support RTD3, this _OSI strings can
66 * be removed if both new and old graphics cards are supported.
67 */
68 {"Linux-Dell-Video", true},
60}; 69};
61 70
62static u32 acpi_osi_handler(acpi_string interface, u32 supported) 71static u32 acpi_osi_handler(acpi_string interface, u32 supported)