2018-08-03 11:57:03

by Colin King

[permalink] [raw]
Subject: [PATCH][iio-next] iio: chemical: fix spelling mistake "failted" -> "failed"

From: Colin Ian King <[email protected]>

fix spelling mistake in dev_err error message text

Signed-off-by: Colin Ian King <[email protected]>
---
drivers/iio/chemical/bme680_core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/chemical/bme680_core.c b/drivers/iio/chemical/bme680_core.c
index 7d9bb62baa3f..5de9e27c914a 100644
--- a/drivers/iio/chemical/bme680_core.c
+++ b/drivers/iio/chemical/bme680_core.c
@@ -577,7 +577,7 @@ static int bme680_gas_config(struct bme680_data *data)
/* set target heating duration */
ret = regmap_write(data->regmap, BME680_REG_GAS_WAIT_0, heatr_dur);
if (ret < 0) {
- dev_err(dev, "failted to write gas_wait_0 register\n");
+ dev_err(dev, "failed to write gas_wait_0 register\n");
return ret;
}

--
2.17.1



2018-08-03 12:06:54

by Himanshu Jha

[permalink] [raw]
Subject: Re: [PATCH][iio-next] iio: chemical: fix spelling mistake "failted" -> "failed"

On Fri, Aug 03, 2018 at 12:55:51PM +0100, Colin King wrote:
> From: Colin Ian King <[email protected]>
>
> fix spelling mistake in dev_err error message text
>
> Signed-off-by: Colin Ian King <[email protected]>

Oops! Thanks for the patch Colin.

Reviewed-by: Himanshu Jha <[email protected]>

--
Himanshu Jha
Undergraduate Student
Department of Electronics & Communication
Guru Tegh Bahadur Institute of Technology

2018-08-03 21:35:35

by Jonathan Cameron

[permalink] [raw]
Subject: Re: [PATCH][iio-next] iio: chemical: fix spelling mistake "failted" -> "failed"

On Fri, 3 Aug 2018 17:35:06 +0530
Himanshu Jha <[email protected]> wrote:

> On Fri, Aug 03, 2018 at 12:55:51PM +0100, Colin King wrote:
> > From: Colin Ian King <[email protected]>
> >
> > fix spelling mistake in dev_err error message text
> >
> > Signed-off-by: Colin Ian King <[email protected]>
>
> Oops! Thanks for the patch Colin.
>
> Reviewed-by: Himanshu Jha <[email protected]>
>
Applied to the togreg branch of iio.git. Thanks,

Jonathan