Changeset 4328
- Timestamp:
- 02/20/07 10:40:08 (6 years ago)
- Location:
- lm-sensors/trunk/kernel/chips
- Files:
-
- 12 modified
-
adm1024.c (modified) (1 diff)
-
adm1025.c (modified) (1 diff)
-
fscher.c (modified) (1 diff)
-
fscpos.c (modified) (1 diff)
-
fscscy.c (modified) (1 diff)
-
it87.c (modified) (1 diff)
-
lm78.c (modified) (1 diff)
-
maxilife.c (modified) (1 diff)
-
mic74.c (modified) (1 diff)
-
sis5595.c (modified) (1 diff)
-
w83627hf.c (modified) (1 diff)
-
w83781d.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/chips/adm1024.c
r3000 r4328 144 144 205-(val)*5) 145 145 146 /* For each registered ADM1024, we need to keep some data in memory. That 147 data is pointed to by adm1024_list[NR]->data. The structure itself is 146 /* For each registered ADM1024, we need to keep some data in memory. It is 148 147 dynamically allocated, at the same time when a new adm1024 client is 149 148 allocated. */ -
lm-sensors/trunk/kernel/chips/adm1025.c
r3000 r4328 113 113 #define ALARMS_FROM_REG(val) (val) 114 114 115 /* For each registered ADM1025, we need to keep some data in memory. That 116 data is pointed to by adm1025_list[NR]->data. The structure itself is 115 /* For each registered ADM1025, we need to keep some data in memory. It is 117 116 dynamically allocated, at the same time when a new adm1025 client is 118 117 allocated. */ -
lm-sensors/trunk/kernel/chips/fscher.c
r3147 r4328 104 104 /* Initial limits */ 105 105 106 /* For each registered FSCHER, we need to keep some data in memory. That 107 data is pointed to by fscher_list[NR]->data. The structure itself is 106 /* For each registered FSCHER, we need to keep some data in memory. It is 108 107 dynamically allocated, at the same time when a new fscher client is 109 108 allocated. */ -
lm-sensors/trunk/kernel/chips/fscpos.c
r3156 r4328 108 108 /* Initial limits */ 109 109 110 /* For each registered FSCPOS, we need to keep some data in memory. That 111 data is pointed to by fscpos_list[NR]->data. The structure itself is 110 /* For each registered FSCPOS, we need to keep some data in memory. It is 112 111 dynamically allocated, at the same time when a new fscpos client is 113 112 allocated. */ -
lm-sensors/trunk/kernel/chips/fscscy.c
r3147 r4328 152 152 /* Initial limits */ 153 153 154 /* For each registered FSCSCY, we need to keep some data in memory. That 155 data is pointed to by fscscy_list[NR]->data. The structure itself is 154 /* For each registered FSCSCY, we need to keep some data in memory. It is 156 155 dynamically allocated, at the same time when a new fscscy client is 157 156 allocated. */ -
lm-sensors/trunk/kernel/chips/it87.c
r3200 r4328 216 216 #define DIV_FROM_REG(val) (1 << (val)) 217 217 218 /* For each registered IT87, we need to keep some data in memory. That 219 data is pointed to by it87_list[NR]->data. The structure itself is 218 /* For each registered IT87, we need to keep some data in memory. It is 220 219 dynamically allocated, at the same time when a new it87 client is 221 220 allocated. */ -
lm-sensors/trunk/kernel/chips/lm78.c
r3156 r4328 112 112 some corners. */ 113 113 114 /* For each registered LM78, we need to keep some data in memory. That 115 data is pointed to by lm78_list[NR]->data. The structure itself is 114 /* For each registered LM78, we need to keep some data in memory. It is 116 115 dynamically allocated, at the same time when a new lm78 client is 117 116 allocated. */ -
lm-sensors/trunk/kernel/chips/maxilife.c
r3147 r4328 234 234 235 235 /* For each registered MaxiLife controller, we need to keep some data in 236 memory. That data is pointed to by maxi_list[NR]->data. The structure 237 itself is dynamically allocated, at the same time when a new MaxiLife 236 memory. It is dynamically allocated, at the same time when a new MaxiLife 238 237 client is allocated. We assume MaxiLife will only be present on the 239 238 SMBus and not on the ISA bus. */ -
lm-sensors/trunk/kernel/chips/mic74.c
r3147 r4328 55 55 /* All registers are 0, except for MIC74_REG_DATA which is 0xFF */ 56 56 57 /* For each registered MIC74, we need to keep some data in memory. That 58 data is pointed to by mic74_list[NR]->data. The structure itself is 57 /* For each registered MIC74, we need to keep some data in memory. It is 59 58 dynamically allocated, at the same time when a new mic74 client is 60 59 allocated. */ -
lm-sensors/trunk/kernel/chips/sis5595.c
r3044 r4328 162 162 #define DIV_TO_REG(val) ((val)==8?3:(val)==4?2:(val)==1?0:1) 163 163 164 /* For the SIS5595, we need to keep some data in memory. That 165 data is pointed to by sis5595_list[NR]->data. The structure itself is 164 /* For the SIS5595, we need to keep some data in memory. It is 166 165 dynamically allocated, at the time when the new sis5595 client is 167 166 allocated. */ -
lm-sensors/trunk/kernel/chips/w83627hf.c
r3228 r4328 282 282 } 283 283 284 /* For each registered chip, we need to keep some data in memory. That 285 data is pointed to by w83627hf_list[NR]->data. The structure itself is 284 /* For each registered chip, we need to keep some data in memory. It is 286 285 dynamically allocated, at the same time when a new client is allocated. */ 287 286 struct w83627hf_data { -
lm-sensors/trunk/kernel/chips/w83781d.c
r4096 r4328 247 247 some corners. */ 248 248 249 /* For each registered W83781D, we need to keep some data in memory. That 250 data is pointed to by w83781d_list[NR]->data. The structure itself is 249 /* For each registered W83781D, we need to keep some data in memory. It is 251 250 dynamically allocated, at the same time when a new w83781d client is 252 251 allocated. */
