Changeset 5219
- Timestamp:
- 05/02/08 12:10:34 (7 months ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/lm75.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r5218 r5219 9 9 Module i2c-piix4: Minor cleanups (2.6 backport) 10 10 Module i2c-sis5595: Minor cleanups (2.6 backport) 11 Module lm75: Fix an incorrect comment (2.6 backport) 11 12 Program sensors-detect: New device ID for the SMSC SCH5317 12 13 Add SMSC SCH5127 detection lm-sensors/trunk/kernel/chips/lm75.c
r4651 r5219 234 234 /* All registers are word-sized, except for the configuration register. 235 235 LM75 uses a high-byte first convention, which is exactly opposite to 236 the usual practice. */236 the SMBus standard. */ 237 237 static int lm75_read_value(struct i2c_client *client, u8 reg) 238 238 { … … 243 243 } 244 244 245 /* All registers are word-sized, except for the configuration register.246 LM75 uses a high-byte first convention, which is exactly opposite to247 the usual practice. */248 245 static int lm75_write_value(struct i2c_client *client, u8 reg, u16 value) 249 246 {
