Changeset 4263
- Timestamp:
- 12/15/06 10:25:45 (2 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/f71805f.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4262 r4263 15 15 Man page sensors.1: Update (option -c) and clean up 16 16 Module i2c-i801: Add ICH9 support 17 Module f71805f: Fix the device address decoding (2.6 backport) 17 18 Module icspll: Delete. It was useless and dangerous. 18 19 Program eepromer: Fix loads of warnings lm-sensors/trunk/kernel/chips/f71805f.c
r3215 r4263 100 100 */ 101 101 102 #define REGION_LENGTH 2103 #define ADDR_REG_OFFSET 0104 #define DATA_REG_OFFSET 1102 #define REGION_LENGTH 8 103 #define ADDR_REG_OFFSET 5 104 #define DATA_REG_OFFSET 6 105 105 106 106 /* … … 723 723 goto exit; 724 724 } 725 *address &= ~(REGION_LENGTH - 1); /* Ignore 3 LSB */ 725 726 726 727 err = 0;
