···11091109 */1110111011111111 /* Does this device support video switching? */11121112- if (video->cap._DOS) {11121112+ if (video->cap._DOS || video->cap._DOD) {11131113+ if (!video->cap._DOS) {11141114+ printk(KERN_WARNING FW_BUG11151115+ "ACPI(%s) defines _DOD but not _DOS\n",11161116+ acpi_device_bid(video->device));11171117+ }11131118 video->flags.multihead = 1;11141119 status = 0;11151120 }
+1-1
drivers/acpi/video_detect.c
···8484 return 0;85858686 /* Does this device able to support video switching ? */8787- if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOD", &h_dummy)) &&8787+ if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOD", &h_dummy)) ||8888 ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOS", &h_dummy)))8989 video_caps |= ACPI_VIDEO_OUTPUT_SWITCHING;9090