Changeset 2994

Show
Ignore:
Timestamp:
05/10/05 20:43:48 (8 years ago)
Author:
khali
Message:

Spelling fixes. Contributed by Steven Cole.

Location:
lm-sensors/trunk/kernel/chips
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/kernel/chips/ds1621.c

    r2867 r2994  
    322322 
    323323        reg = ds1621_read_value(client, DS1621_REG_CONF); 
    324         /* start the continous conversion */ 
     324        /* start the continuous conversion */ 
    325325        if(reg & 0x01) 
    326326                ds1621_write_value(client, DS1621_REG_CONF, reg & 0xfe); 
     
    363363                } 
    364364 
    365                 /* reset alarms if neccessary */ 
     365                /* reset alarms if necessary */ 
    366366                new_conf = data->conf; 
    367367                if (data->temp < data->temp_over) 
     
    441441{ 
    442442        /* If you really screw up your chip (like I did) this is */ 
    443         /* sometimes needed to (re)start the continous conversion */ 
     443        /* sometimes needed to (re)start the continuous conversion */ 
    444444        /* there is no data to read so this might hang your SMBus! */ 
    445445 
  • lm-sensors/trunk/kernel/chips/it87.c

    r2940 r2994  
    623623} 
    624624 
    625 /* The SMBus locks itself, but ISA access must be locked explicitely!  
     625/* The SMBus locks itself, but ISA access must be locked explicitly!  
    626626   We don't want to lock the whole ISA bus, so we lock each client 
    627627   separately. 
     
    643643} 
    644644 
    645 /* The SMBus locks itself, but ISA access muse be locked explicitely!  
     645/* The SMBus locks itself, but ISA access muse be locked explicitly!  
    646646   We don't want to lock the whole ISA bus, so we lock each client 
    647647   separately. 
  • lm-sensors/trunk/kernel/chips/lm63.c

    r2845 r2994  
    100100 * For tachometer counts, the LM63 uses 16-bit values. 
    101101 * For local temperature and high limit, remote critical limit and hysteresis 
    102  * value, it uses signed 8-bit values with LSB = 1 degree Celcius. 
     102 * value, it uses signed 8-bit values with LSB = 1 degree Celsius. 
    103103 * For remote temperature, low and high limits, it uses signed 11-bit values 
    104  * with LSB = 0.125 degree Celcius, left-justified in 16-bit registers. 
     104 * with LSB = 0.125 degree Celsius, left-justified in 16-bit registers. 
    105105 */ 
    106106 
  • lm-sensors/trunk/kernel/chips/lm78.c

    r2947 r2994  
    431431} 
    432432 
    433 /* The SMBus locks itself, but ISA access must be locked explicitely!  
     433/* The SMBus locks itself, but ISA access must be locked explicitly!  
    434434   We don't want to lock the whole ISA bus, so we lock each client 
    435435   separately. 
     
    451451} 
    452452 
    453 /* The SMBus locks itself, but ISA access muse be locked explicitely!  
     453/* The SMBus locks itself, but ISA access muse be locked explicitly!  
    454454   We don't want to lock the whole ISA bus, so we lock each client 
    455455   separately. 
  • lm-sensors/trunk/kernel/chips/lm83.c

    r2867 r2994  
    8181/* 
    8282 * Conversions and various macros 
    83  * The LM83 uses signed 8-bit values with LSB = 1 degree Celcius. 
     83 * The LM83 uses signed 8-bit values with LSB = 1 degree Celsius. 
    8484 */ 
    8585 
  • lm-sensors/trunk/kernel/chips/lm90.c

    r2954 r2994  
    2020 *   http://www.national.com/pf/LM/LM89.html 
    2121 *   http://www.national.com/pf/LM/LM99.html 
    22  * Note that there is no way to differenciate between both chips. 
     22 * Note that there is no way to differentiate between both chips. 
    2323 * 
    2424 * This driver also supports the LM86, another sensor chip made by 
     
    4040 * datasheet can be obtained at Maxim's website at: 
    4141 *   http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2578 
    42  * Note that there is no easy way to differenciate between the three 
     42 * Note that there is no easy way to differentiate between the three 
    4343 * variants. The extra address and features of the MAX6659 are not 
    4444 * supported by this driver. 
     
    145145 * Conversions and various macros 
    146146 * For local temperatures and limits, critical limits and the hysteresis 
    147  * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celcius. 
     147 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius. 
    148148 * For remote temperatures and limits, it uses signed 11-bit values with 
    149  * LSB = 0.125 degree Celcius, left-justified in 16-bit registers. 
     149 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. 
    150150 */ 
    151151