Changeset 2994
- Timestamp:
- 05/10/05 20:43:48 (8 years ago)
- Location:
- lm-sensors/trunk/kernel/chips
- Files:
-
- 6 modified
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/chips/ds1621.c
r2867 r2994 322 322 323 323 reg = ds1621_read_value(client, DS1621_REG_CONF); 324 /* start the contin ous conversion */324 /* start the continuous conversion */ 325 325 if(reg & 0x01) 326 326 ds1621_write_value(client, DS1621_REG_CONF, reg & 0xfe); … … 363 363 } 364 364 365 /* reset alarms if nec cessary */365 /* reset alarms if necessary */ 366 366 new_conf = data->conf; 367 367 if (data->temp < data->temp_over) … … 441 441 { 442 442 /* If you really screw up your chip (like I did) this is */ 443 /* sometimes needed to (re)start the contin ous conversion */443 /* sometimes needed to (re)start the continuous conversion */ 444 444 /* there is no data to read so this might hang your SMBus! */ 445 445 -
lm-sensors/trunk/kernel/chips/it87.c
r2940 r2994 623 623 } 624 624 625 /* The SMBus locks itself, but ISA access must be locked explicit ely!625 /* The SMBus locks itself, but ISA access must be locked explicitly! 626 626 We don't want to lock the whole ISA bus, so we lock each client 627 627 separately. … … 643 643 } 644 644 645 /* The SMBus locks itself, but ISA access muse be locked explicit ely!645 /* The SMBus locks itself, but ISA access muse be locked explicitly! 646 646 We don't want to lock the whole ISA bus, so we lock each client 647 647 separately. -
lm-sensors/trunk/kernel/chips/lm63.c
r2845 r2994 100 100 * For tachometer counts, the LM63 uses 16-bit values. 101 101 * For local temperature and high limit, remote critical limit and hysteresis 102 * value, it uses signed 8-bit values with LSB = 1 degree Cel cius.102 * value, it uses signed 8-bit values with LSB = 1 degree Celsius. 103 103 * For remote temperature, low and high limits, it uses signed 11-bit values 104 * with LSB = 0.125 degree Cel cius, left-justified in 16-bit registers.104 * with LSB = 0.125 degree Celsius, left-justified in 16-bit registers. 105 105 */ 106 106 -
lm-sensors/trunk/kernel/chips/lm78.c
r2947 r2994 431 431 } 432 432 433 /* The SMBus locks itself, but ISA access must be locked explicit ely!433 /* The SMBus locks itself, but ISA access must be locked explicitly! 434 434 We don't want to lock the whole ISA bus, so we lock each client 435 435 separately. … … 451 451 } 452 452 453 /* The SMBus locks itself, but ISA access muse be locked explicit ely!453 /* The SMBus locks itself, but ISA access muse be locked explicitly! 454 454 We don't want to lock the whole ISA bus, so we lock each client 455 455 separately. -
lm-sensors/trunk/kernel/chips/lm83.c
r2867 r2994 81 81 /* 82 82 * Conversions and various macros 83 * The LM83 uses signed 8-bit values with LSB = 1 degree Cel cius.83 * The LM83 uses signed 8-bit values with LSB = 1 degree Celsius. 84 84 */ 85 85 -
lm-sensors/trunk/kernel/chips/lm90.c
r2954 r2994 20 20 * http://www.national.com/pf/LM/LM89.html 21 21 * http://www.national.com/pf/LM/LM99.html 22 * Note that there is no way to differen ciate between both chips.22 * Note that there is no way to differentiate between both chips. 23 23 * 24 24 * This driver also supports the LM86, another sensor chip made by … … 40 40 * datasheet can be obtained at Maxim's website at: 41 41 * http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2578 42 * Note that there is no easy way to differen ciate between the three42 * Note that there is no easy way to differentiate between the three 43 43 * variants. The extra address and features of the MAX6659 are not 44 44 * supported by this driver. … … 145 145 * Conversions and various macros 146 146 * For local temperatures and limits, critical limits and the hysteresis 147 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Cel cius.147 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius. 148 148 * For remote temperatures and limits, it uses signed 11-bit values with 149 * LSB = 0.125 degree Cel cius, left-justified in 16-bit registers.149 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. 150 150 */ 151 151
