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