Changeset 2410
- Timestamp:
- 04/04/04 09:16:30 (9 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
kernel/chips/ddcmon.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r2408 r2410 34 34 (Aurelien Jarno) 35 35 Modules pcf8574, pcf8591: Cleanups 36 Modules ddcmon, eeprom: Fix bogus init (Ralf Roesch) 36 37 Module adm1021: Better detection and initialization 37 Module eeprom: Fix bogus init (Ralf Roesch)38 38 Module pca9540: New driver for the Philips PCA9540 39 39 Module pc87360-fan: New driver for the National Semiconductor PC87360, -
lm-sensors/trunk/kernel/chips/ddcmon.c
r2094 r2410 224 224 225 225 data = (struct ddcmon_data *) (new_client + 1); 226 memset(data , 0xff, DDCMON_SIZE);226 memset(data->data, 0xff, DDCMON_SIZE); 227 227 new_client->addr = address; 228 228 new_client->data = data;
