Changeset 219

Show
Ignore:
Timestamp:
02/12/99 06:47:07 (10 years ago)
Author:
frodo
Message:

Removed offending ISA test. Added warning about renamed modules.

Files:

Legend:

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

    r215 r219  
    77the cutting edge. Things may not even compile! On the other hand, you will 
    88be the first to profit from new drivers and other changes. Have fun! 
     9 
     10WARNING! Some things have changed since version 2.1.2. Most notably, 
     11module piix4 is renamed i2c-piix4, module isa is renamed i2c-isa, 
     12and module bit-mb is renamed i2c-via. You have been warned. 
    913 
    1014At least the following SMBus adapters are supported: 
  • lm-sensors/trunk/TODO

    r207 r219  
    55  it more interactive 
    66* Check for block read/writes in smbus-on-i2c emulation code 
    7 * Merge man-pages 
    8 * Fans give overflow if small values are written to them
     7* Fans give overflow if small values are written to them in /proc; other  
     8  features may too
    99* At least the bit-lp and bit-velle modules do no detection on loading; 
    1010  ask Simon whether this is possible to add. 
     
    3838* Test SIS5595(/91/98) sensor support. Write generic i2c support.  
    3939  Thomas Dickel <Thomas.Dickel@mni.fh-giessen.de> owns one SIS5595. 
    40 * Write Acer Labs Aladdin V southbridge (M1543C) support 
    41   Mark Studebaker <mds@blazer.eng.paradyne.com> is working on it
     40  The sensor data must be added to lib/chips 
     41* Extend detect script to detect chips too
  • lm-sensors/trunk/kernel/chips/lm78.c

    r207 r219  
    318318      continue; 
    319319 
    320     /* Awful, but true: unused port addresses should return 0xff */ 
    321     if ((inb_p(address + 1) != 0xff) || (inb_p(address + 2) != 0xff) || 
    322        (inb_p(address + 3) != 0xff) || (inb_p(address + 7) != 0xff)) 
    323       continue; 
    324      
    325320    if (inb_p(address + LM78_ADDR_REG_OFFSET) == 0xff) { 
    326321      outb_p(0x00,address + LM78_ADDR_REG_OFFSET); 
  • lm-sensors/trunk/kernel/chips/w83781d.c

    r207 r219  
    373373      continue; 
    374374 
    375     /* Awful, but true: unused port addresses should return 0xff */ 
    376     if ((inb_p(address + 1) != 0xff) || (inb_p(address + 2) != 0xff) || 
    377        (inb_p(address + 3) != 0xff) || (inb_p(address + 7) != 0xff)) 
    378       continue; 
    379      
    380375    if (inb_p(address + W83781D_ADDR_REG_OFFSET) == 0xff) { 
    381376      outb_p(0x00,address + W83781D_ADDR_REG_OFFSET);