diff mbox series

[iio-next] iio: chemical: fix spelling mistake "failted" -> "failed"

Message ID 20180803115551.18866-1-colin.king@canonical.com (mailing list archive)
State New, archived
Headers show
Series [iio-next] iio: chemical: fix spelling mistake "failted" -> "failed" | expand

Commit Message

Colin King Aug. 3, 2018, 11:55 a.m. UTC
From: Colin Ian King <colin.king@canonical.com>

fix spelling mistake in dev_err error message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/iio/chemical/bme680_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Himanshu Jha Aug. 3, 2018, 12:05 p.m. UTC | #1
On Fri, Aug 03, 2018 at 12:55:51PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> fix spelling mistake in dev_err error message text
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Oops! Thanks for the patch Colin.

Reviewed-by: Himanshu Jha <himanshujha199640@gmail.com>
Jonathan Cameron Aug. 3, 2018, 9:34 p.m. UTC | #2
On Fri, 3 Aug 2018 17:35:06 +0530
Himanshu Jha <himanshujha199640@gmail.com> wrote:

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

Jonathan

--
To unsubscribe from this list: send the line "unsubscribe linux-iio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

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;
 	}