Changeset 5015

Show
Ignore:
Timestamp:
11/11/07 22:17:19 (1 year ago)
Author:
khali
Message:

Stop probing I2C addresses 0x20-0x27 for the LM78, LM79, W83781D and
W83782D chips. We've never seen any hardware monitoring chip at these
addresses. The correponding kernel drivers will be modified to no
longer probe these addresses either.

Files:

Legend:

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

    r5014 r5015  
    1010                          Mention the f75375s driver 
    1111                          Add SMSC LPC47B367-NC detection (no sensors) 
     12                          Reduce w83781d/lm78 I2C address probing range 
    1213 
    13142.10.5 (20071024) 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r5010 r5015  
    761761       name => "National Semiconductor LM78", 
    762762       driver => "lm78", 
    763        i2c_addrs => [0x20..0x2f],  
     763       i2c_addrs => [0x28..0x2f],  
    764764       i2c_detect => sub { lm78_detect(0, @_); }, 
    765765       isa_addrs => [0x290], 
     
    770770       name => "National Semiconductor LM78-J", 
    771771       driver => "lm78", 
    772        i2c_addrs => [0x20..0x2f],  
     772       i2c_addrs => [0x28..0x2f],  
    773773       i2c_detect => sub { lm78_detect(1, @_); }, 
    774774       isa_addrs => [0x290], 
     
    779779       name => "National Semiconductor LM79", 
    780780       driver => "lm78", 
    781        i2c_addrs => [0x20..0x2f],  
     781       i2c_addrs => [0x28..0x2f],  
    782782       i2c_detect => sub { lm78_detect(2, @_); }, 
    783783       isa_addrs => [0x290], 
     
    911911       driver => "w83781d", 
    912912       i2c_detect => sub { w83781d_detect(0, @_); }, 
    913        i2c_addrs => [0x20..0x2f],  
     913       i2c_addrs => [0x28..0x2f],  
    914914       isa_addrs => [0x290], 
    915915       isa_detect => sub { w83781d_isa_detect(0, @_); }, 
     
    919919       name => "Winbond W83782D", 
    920920       driver => "w83781d", 
    921        i2c_addrs => [0x20..0x2f],  
     921       i2c_addrs => [0x28..0x2f],  
    922922       i2c_detect => sub { w83781d_detect(1, @_); }, 
    923923       isa_addrs => [0x290],