Changeset 219
- Timestamp:
- 02/12/99 06:47:07 (10 years ago)
- Files:
-
- lm-sensors/trunk/README (modified) (1 diff)
- lm-sensors/trunk/TODO (modified) (2 diffs)
- lm-sensors/trunk/kernel/chips/lm78.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/w83781d.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/README
r215 r219 7 7 the cutting edge. Things may not even compile! On the other hand, you will 8 8 be the first to profit from new drivers and other changes. Have fun! 9 10 WARNING! Some things have changed since version 2.1.2. Most notably, 11 module piix4 is renamed i2c-piix4, module isa is renamed i2c-isa, 12 and module bit-mb is renamed i2c-via. You have been warned. 9 13 10 14 At least the following SMBus adapters are supported: lm-sensors/trunk/TODO
r207 r219 5 5 it more interactive 6 6 * Check for block read/writes in smbus-on-i2c emulation code 7 * Merge man-pages8 * 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. 9 9 * At least the bit-lp and bit-velle modules do no detection on loading; 10 10 ask Simon whether this is possible to add. … … 38 38 * Test SIS5595(/91/98) sensor support. Write generic i2c support. 39 39 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 318 318 continue; 319 319 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 325 320 if (inb_p(address + LM78_ADDR_REG_OFFSET) == 0xff) { 326 321 outb_p(0x00,address + LM78_ADDR_REG_OFFSET); lm-sensors/trunk/kernel/chips/w83781d.c
r207 r219 373 373 continue; 374 374 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 380 375 if (inb_p(address + W83781D_ADDR_REG_OFFSET) == 0xff) { 381 376 outb_p(0x00,address + W83781D_ADDR_REG_OFFSET);
