ACPI video: check cap._DDC flag before getting EDID
cap._DDC is defined but never used. Check this flag now and don't try to get EDID for video output devices with this flag cleared. Signed-off-by: Zhang Rui <rui.zhang@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
677bd810ee
commit
8206955255
1 changed files with 3 additions and 0 deletions
|
@ -1275,6 +1275,9 @@ int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
|
||||||
if (!video_device)
|
if (!video_device)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (!video_device->cap._DDC)
|
||||||
|
continue;
|
||||||
|
|
||||||
if (type) {
|
if (type) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case ACPI_VIDEO_DISPLAY_CRT:
|
case ACPI_VIDEO_DISPLAY_CRT:
|
||||||
|
|
Loading…
Add table
Reference in a new issue