Changeset 4347
- Timestamp:
- 03/17/07 22:07:54 (6 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r4345 r4347 44 44 Add Nat. Semi. PC8347L Super-I/O detection 45 45 Add SMSC SCH5504 Super-I/O detection (no sensors) 46 Make the LM78 and W83781D detection safer 46 47 47 48 -
lm-sensors/trunk/prog/detect/sensors-detect
r4343 r4347 3287 3287 inb ($addr + 7) != $val; 3288 3288 3289 $val = inb($addr + 5) & 0x7f;3290 outb($addr + 5, ~$val & 0x ff);3289 $val = inb($addr + 5); 3290 outb($addr + 5, ~$val & 0x7f); 3291 3291 if ((inb ($addr+5) & 0x7f) != (~ $val & 0x7f)) { 3292 3292 outb($addr+5,$val); … … 4251 4251 inb ($addr + 7) != $val; 4252 4252 4253 $val = inb($addr + 5) & 0x7f;4254 outb($addr+5, ~$val & 0x ff);4253 $val = inb($addr + 5); 4254 outb($addr+5, ~$val & 0x7f); 4255 4255 if ((inb ($addr+5) & 0x7f) != (~ $val & 0x7f)) { 4256 4256 outb($addr+5,$val);
