Re: [PATCH v5 01/14] iio: accel: fix typo celcius to Celsius
From: Jonathan Cameron
Date: Sat Mar 21 2026 - 15:11:28 EST
On Mon, 16 Mar 2026 14:30:09 +0530
Shi Hao <i.shihao.999@xxxxxxxxx> wrote:
> Fix incorrect spelling in comments
> - celcius -> Celsius
>
> Signed-off-by: Shi Hao <i.shihao.999@xxxxxxxxx>
I want to reduce the number of patches that are floating around so
I'm going to pick up the easy bits of your series.
I'll note that having pulled this down with b4 git didn't like it
for some reason, reporting corruption at line 11. patch was fine
with it though so I applied it the long way.
Applied this one, so don't included it for v6!
> ---
> drivers/iio/accel/adis16201.c | 2 +-
> drivers/iio/accel/adis16209.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/iio/accel/adis16201.c b/drivers/iio/accel/adis16201.c
> index 5127e58eebc7..ba0f97944c6d 100644
> --- a/drivers/iio/accel/adis16201.c
> +++ b/drivers/iio/accel/adis16201.c
> @@ -147,7 +147,7 @@ static int adis16201_read_raw(struct iio_dev *indio_dev,
> /*
> * The raw ADC value is 1278 when the temperature
> * is 25 degrees and the scale factor per milli
> - * degree celcius is -470.
> + * degree Celsius is -470.
> */
> *val = 25000 / -470 - 1278;
> return IIO_VAL_INT;
> diff --git a/drivers/iio/accel/adis16209.c b/drivers/iio/accel/adis16209.c
> index 41ffd92f27fd..04e169f221c4 100644
> --- a/drivers/iio/accel/adis16209.c
> +++ b/drivers/iio/accel/adis16209.c
> @@ -186,7 +186,7 @@ static int adis16209_read_raw(struct iio_dev *indio_dev,
> /*
> * The raw ADC value is 0x4FE when the temperature
> * is 45 degrees and the scale factor per milli
> - * degree celcius is -470.
> + * degree Celsius is -470.
> */
> *val = 25000 / -470 - 0x4FE;
> return IIO_VAL_INT;
> --
> 2.53.0