Changeset 4062

Show
Ignore:
Timestamp:
06/23/06 23:37:40 (2 years ago)
Author:
khali
Message:

sensors-detect: Add AMD Geode devices detection

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/CHANGES

    r4061 r4062  
    5151                          Handle the W83791D driver difference between kernels 
    5252                          Add nForce4 MCP04, MCP51 and MCP55 detection 
     53                          Add AMD Geode devices detection 
    5354 
    5455 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r4055 r4062  
    869869       match => qr/^SMBus PIIX4 adapter at /, 
    870870     } ,  
     871     { 
     872       vendid => 0x100B, 
     873       devid => 0x0500, 
     874       procid => "SCx200 Bridge", 
     875       driver => "scx200_acb", 
     876       match => qr/^(NatSemi SCx200 ACCESS\.bus|SCx200 ACB\d+) /, 
     877     }, 
     878     { 
     879       vendid => 0x100B, 
     880       devid => 0x0510, 
     881       procid => "SC1100 Bridge", 
     882       driver => "scx200_acb", 
     883       match => qr/^(NatSemi SCx200 ACCESS\.bus|SCx200 ACB\d+) /, 
     884     }, 
     885     { 
     886       vendid => 0x100B, 
     887       devid => 0x002B, 
     888       procid => "CS5535 ISA bridge", 
     889       driver => "scx200_acb", 
     890       match => qr/^CS5535 ACB\d+ /, 
     891     }, 
     892     { 
     893       vendid => 0x1022, 
     894       devid => 0x2090, 
     895       procid => "CS5536 [Geode companion] ISA", 
     896       driver => "scx200_acb", 
     897       match => qr/^CS553[56] ACB\d+ /, 
     898     }, 
    871899); 
    872900 
     
    23232351      if ($try->{vendid} == $device->{vendid} && 
    23242352          $try->{devid} == $device->{devid} && 
    2325           $try->{func} == $device->{func}) { 
     2353          (!defined($try->{func}) || $try->{func} == $device->{func})) { 
    23262354        printf "Use driver `%s' for device %02x:%02x.%x: %s\n", 
    23272355               $try->{driver},