Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

iio: accel: fix typo celcius to Celsius

Fix incorrect spelling in comments
- celcius -> Celsius

Signed-off-by: Shi Hao <i.shihao.999@gmail.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

Shi Hao and committed by
Jonathan Cameron
db0da4b7 58b98c66

+2 -2
+1 -1
drivers/iio/accel/adis16201.c
··· 147 147 /* 148 148 * The raw ADC value is 1278 when the temperature 149 149 * is 25 degrees and the scale factor per milli 150 - * degree celcius is -470. 150 + * degree Celsius is -470. 151 151 */ 152 152 *val = 25000 / -470 - 1278; 153 153 return IIO_VAL_INT;
+1 -1
drivers/iio/accel/adis16209.c
··· 186 186 /* 187 187 * The raw ADC value is 0x4FE when the temperature 188 188 * is 45 degrees and the scale factor per milli 189 - * degree celcius is -470. 189 + * degree Celsius is -470. 190 190 */ 191 191 *val = 25000 / -470 - 0x4FE; 192 192 return IIO_VAL_INT;