summaryrefslogtreecommitdiffstats
path: root/drivers/i2c/chips/lm90.c
diff options
context:
space:
mode:
authorSteven Cole2005-05-04 02:21:25 +0200
committerGreg Kroah-Hartman2005-06-22 06:51:55 +0200
commit44bbe87e9017efa050bb1b506c6822f1f3bb94d7 (patch)
tree62656712b3707592fb8fb8e152a200e71dbbb150 /drivers/i2c/chips/lm90.c
parent[PATCH] I2C: Add support for the LPC47M15x and LPC47M192 chips to smsc47m1 (diff)
downloadkernel-qcow2-linux-44bbe87e9017efa050bb1b506c6822f1f3bb94d7.tar.gz
kernel-qcow2-linux-44bbe87e9017efa050bb1b506c6822f1f3bb94d7.tar.xz
kernel-qcow2-linux-44bbe87e9017efa050bb1b506c6822f1f3bb94d7.zip
[PATCH] Spelling fixes for drivers/i2c.
Here are some spelling corrections for drivers/i2c. occured -> occurred intialization -> initialization Everytime -> Every time transfering -> transferring relevent -> relevant continous -> continuous neccessary -> necessary explicitely -> explicitly Celcius -> Celsius differenciate -> differentiate Signed-off-by: Steven Cole <elenstev@mesatop.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/i2c/chips/lm90.c')
-rw-r--r--drivers/i2c/chips/lm90.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/i2c/chips/lm90.c b/drivers/i2c/chips/lm90.c
index d4da90da2eae..42795b43c8b9 100644
--- a/drivers/i2c/chips/lm90.c
+++ b/drivers/i2c/chips/lm90.c
@@ -19,7 +19,7 @@
* Complete datasheets can be obtained from National's website at:
* http://www.national.com/pf/LM/LM89.html
* http://www.national.com/pf/LM/LM99.html
- * Note that there is no way to differenciate between both chips.
+ * Note that there is no way to differentiate between both chips.
*
* This driver also supports the LM86, another sensor chip made by
* National Semiconductor. It is exactly similar to the LM90 except it
@@ -39,7 +39,7 @@
* chips made by Maxim. These chips are similar to the LM86. Complete
* datasheet can be obtained at Maxim's website at:
* http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2578
- * Note that there is no easy way to differenciate between the three
+ * Note that there is no easy way to differentiate between the three
* variants. The extra address and features of the MAX6659 are not
* supported by this driver.
*
@@ -138,9 +138,9 @@ SENSORS_INSMOD_6(lm90, adm1032, lm99, lm86, max6657, adt7461);
/*
* Conversions and various macros
* For local temperatures and limits, critical limits and the hysteresis
- * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celcius.
+ * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
* For remote temperatures and limits, it uses signed 11-bit values with
- * LSB = 0.125 degree Celcius, left-justified in 16-bit registers.
+ * LSB = 0.125 degree Celsius, left-justified in 16-bit registers.
*/
#define TEMP1_FROM_REG(val) ((val) * 1000)