Changeset 5054
- Timestamp:
- 12/01/07 11:50:40 (5 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
kernel/chips/adm1026.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5052 r5054 6 6 Fix sysfs presence detection 7 7 Makefile: Revert changeset 4738, fix bug #2187 differently 8 Module adm1026: Various cleanups 8 9 Module eeprom: Hide Sony Vaio serial numbers to regular users (2.6 backport) 9 10 Drop useless debugging log messages -
lm-sensors/trunk/kernel/chips/adm1026.c
r4651 r5054 34 34 and the old scaling was producing double the RPM's 35 35 Thanks to Jerome Hsiao @ Arima for pointing this out. 36 2004-01-27 Remove use of temporary ID.36 2004-01-27 Remove use of temporary ID. 37 37 Define addresses as a range. 38 38 */ … … 297 297 struct i2c_client client; 298 298 int sysctl_id; 299 enum chips type;300 299 301 300 struct semaphore update_lock; … … 470 469 #define ADM1026_ALARM_THERM (1L << 27) 471 470 #define ADM1026_ALARM_AFC_FAN (1L << 28) 472 #define ADM1026_ALARM_UNUSED (1L << 29)473 471 #define ADM1026_ALARM_CI (1L << 30) 474 472 /* -- SENSORS SYSCTL END -- */ … … 726 724 727 725 /* Housekeeping values */ 728 data->type = kind;729 726 data->valid = 0; 730 727 … … 856 853 } 857 854 858 value = data->config3 ;859 855 if( data->config3 & CFG3_GPIO16_ENABLE ) { 860 856 printk("adm1026(%d): GPIO16 enabled. THERM pin disabled.\n", … … 1722 1718 { 1723 1719 printk("adm1026: Version %s (%s)\n", LM_VERSION, LM_DATE); 1724 printk("adm1026: See http://www.penguincomputing.com/lm_sensors for more info.\n" );1725 1720 return i2c_add_driver(&adm1026_driver); 1726 1721 }
