Changeset 4348
- Timestamp:
- 03/18/07 10:45:21 (1 year ago)
- Files:
-
- lm-sensors/trunk/doc/chips/lm90 (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/lm90.c (modified) (1 diff)
- lm-sensors/trunk/prog/detect/sensors-detect (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/doc/chips/lm90
r3181 r4348 177 177 Instead, it will try to write the PEC value to the register (because the 178 178 SMBus Send Byte transaction with PEC is similar to a Write Byte transaction 179 without PEC), which is not what we want. Thus, PEC is explicit ely disabled179 without PEC), which is not what we want. Thus, PEC is explicitly disabled 180 180 on SMBus Send Byte transactions in the lm90 driver. 181 181 lm-sensors/trunk/kernel/chips/lm90.c
r3181 r4348 303 303 304 304 /* The ADM1032 supports PEC but not on write byte transactions, so we need 305 to explicit ely ask for a transaction without PEC. */305 to explicitly ask for a transaction without PEC. */ 306 306 static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value) 307 307 { lm-sensors/trunk/prog/detect/sensors-detect
r4347 r4348 3300 3300 ($chip == 2 and ($reg & 0xfe) == 0xc0); 3301 3301 3302 # Explicit ely prevent misdetection of Winbond chips3302 # Explicitly prevent misdetection of Winbond chips 3303 3303 $reg = &$readproc(0x4f); 3304 3304 return if $reg == 0xa3 || $reg == 0x5c; 3305 3305 3306 # Explicit ely prevent misdetection of ITE chips3306 # Explicitly prevent misdetection of ITE chips 3307 3307 $reg = &$readproc(0x58); 3308 3308 return if $reg == 0x90;
