Show
Ignore:
Timestamp:
04/09/12 21:33:35 (15 months ago)
Author:
khali
Message:

Avoid probing EDID addresses (0x50-0x57) on graphics card adapters.
We had one report that it caused trouble:
 http://lists.lm-sensors.org/pipermail/lm-sensors/2012-April/035847.html
Even though it's not yet clear what happened, let's play it safe.
This fixes ticket #2386.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/prog/detect/sensors-detect

    r6038 r6040  
    36613661                chomp($input); 
    36623662                @not_to_scan = parse_not_to_scan(0x03, 0x77, $input); 
     3663        } elsif (($class & 0xff00) == 0x0300) { 
     3664                # Skip EDID addresses by default on graphics adapters 
     3665                @not_to_scan = parse_not_to_scan(0x03, 0x77, "0x50-0x57"); 
    36633666        } 
    36643667