Changeset 5127

Show
Ignore:
Timestamp:
02/20/08 20:33:56 (5 years ago)
Author:
khali
Message:

Move south bridge sensor detection to the right section.

Location:
lm-sensors/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r5125 r5127  
    4646                          Add SMSC SCH5027D detection 
    4747                          Do not access I/O ports on PPC 
     48                          Move south bridge sensor detection to the right 
     49                           section 
    4850  Program unhide_ICH_SMBus: Add support for the 82801AA (ICH) 
    4951 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r5125 r5127  
    13281328     }, 
    13291329     { 
    1330        name => "Silicon Integrated Systems SIS5595", 
    1331        driver => "sis5595", 
    1332        isa_addrs => [ 0 ], 
    1333        isa_detect => sub { sis5595_pci_detect(); }, 
    1334      }, 
    1335      { 
    1336        name => "VIA VT82C686 Integrated Sensors", 
    1337        driver => "via686a", 
    1338        isa_addrs => [ 0 ], 
    1339        isa_detect => sub { via686a_pci_detect(); }, 
    1340      }, 
    1341      { 
    1342        name => "VIA VT8231 Integrated Sensors", 
    1343        driver => "vt8231", 
    1344        isa_addrs => [ 0 ], 
    1345        isa_detect => sub { via8231_pci_detect(); }, 
    1346      }, 
    1347      { 
    13481330       name => "VIA VT1211 (I2C)", 
    13491331       driver => "use-isa-instead", 
     
    21522134@cpu_ids = ( 
    21532135  { 
     2136    name => "Silicon Integrated Systems SIS5595", 
     2137    driver => "sis5595", 
     2138    detect => sub { sis5595_pci_detect(); }, 
     2139  }, 
     2140  { 
     2141    name => "VIA VT82C686 Integrated Sensors", 
     2142    driver => "via686a", 
     2143    detect => sub { via686a_pci_detect(); }, 
     2144  }, 
     2145  { 
     2146    name => "VIA VT8231 Integrated Sensors", 
     2147    driver => "vt8231", 
     2148    detect => sub { via8231_pci_detect(); }, 
     2149  }, 
     2150  { 
    21542151    name => "AMD K8 thermal sensors", 
    21552152    driver => "k8temp", 
     
    32573254    next if not exists $chip->{isa_addrs} or not exists $chip->{isa_detect}; 
    32583255    foreach $addr (@{$chip->{isa_addrs}}) { 
    3259       printf("\%-60s", sprintf("Probing for `\%s'\%s... ", $chip->{name}, 
    3260                                $addr ? sprintf(" at 0x\%x", $addr) : '')); 
     3256      printf("\%-60s", sprintf("Probing for `\%s'\ at 0x\%x... ", $chip->{name}, 
     3257                               $addr)); 
    32613258      $conf = &{$chip->{isa_detect}} ($addr); 
    32623259      print("No\n"), next if not defined $conf; 
     
    58385835  } 
    58395836 
    5840   print "Some CPUs or memory controllers may also contain embedded sensors.\n"; 
    5841   print "Do you want to scan for them? (YES/no): "; 
     5837  print "Some south bridges, CPUs or memory controllers may also contain \n"; 
     5838  print "embedded sensors. Do you want to scan for them? (YES/no): "; 
    58425839  unless (<STDIN> =~ /^\s*n/i) { 
    58435840    $| = 1;