Changeset 347
- Timestamp:
- 03/28/99 16:49:54 (10 years ago)
- Files:
-
- lm-sensors/trunk/TODO (modified) (1 diff)
- lm-sensors/trunk/i2c/MODIFICATIONS (modified) (1 diff)
- lm-sensors/trunk/i2c/bit-lp.c (modified) (2 diffs)
- lm-sensors/trunk/i2c/bit-velle.c (modified) (2 diffs)
- lm-sensors/trunk/kernel/busses/i2c-via.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/TODO
r337 r347 4 4 * Timer chips - block read problems? 5 5 * LM78 detection: bit 5 reg 0x49 may be one?!? 6 * bit-lp increases module count stupidly7 6 * Segfault if too high /dev/i2c-* file accessed 8 7 * Library: reload does not work (Bison/Flex problem?) lm-sensors/trunk/i2c/MODIFICATIONS
r346 r347 15 15 16 16 * Algo-bit now scans the bus before registering the adapter. 17 18 * Bit-lp and bit-velle don't increase module usage counts 19 when clients register. 17 20 18 21 ! Renamed #define HW_B_MB to HW_B_VIA in i2c.h lm-sensors/trunk/i2c/bit-lp.c
r185 r347 119 119 int bit_lp_reg(struct i2c_client *client) 120 120 { 121 MOD_INC_USE_COUNT;122 121 return 0; 123 122 } … … 125 124 int bit_lp_unreg(struct i2c_client *client) 126 125 { 127 MOD_DEC_USE_COUNT;128 126 return 0; 129 127 } lm-sensors/trunk/i2c/bit-velle.c
r184 r347 131 131 int bit_velle_reg(struct i2c_client *client) 132 132 { 133 MOD_INC_USE_COUNT;134 133 return 0; 135 134 } … … 137 136 int bit_velle_unreg(struct i2c_client *client) 138 137 { 139 MOD_DEC_USE_COUNT;140 138 return 0; 141 139 } lm-sensors/trunk/kernel/busses/i2c-via.c
r344 r347 88 88 static int bit_via_reg(struct i2c_client *client) 89 89 { 90 MOD_INC_USE_COUNT;91 90 return 0; 92 91 } … … 94 93 static int bit_via_unreg(struct i2c_client *client) 95 94 { 96 MOD_DEC_USE_COUNT;97 95 return 0; 98 96 }
