[PATCH][next] hwmon: ltc2991: Fix spelling mistake "contiuous" -> "continuous"

Colin Ian King posted 1 patch 2 years, 1 month ago
drivers/hwmon/ltc2991.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] hwmon: ltc2991: Fix spelling mistake "contiuous" -> "continuous"
Posted by Colin Ian King 2 years, 1 month ago
There is a spelling mistake in a dev_err_probe messages. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/hwmon/ltc2991.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hwmon/ltc2991.c b/drivers/hwmon/ltc2991.c
index bd63c61129a9..fc53fdcb2b6c 100644
--- a/drivers/hwmon/ltc2991.c
+++ b/drivers/hwmon/ltc2991.c
@@ -373,7 +373,7 @@ static int ltc2991_init(struct ltc2991_state *st)
 			   LTC2991_REPEAT_ACQ_EN);
 	if (ret)
 		return dev_err_probe(st->dev, ret,
-				     "Error: Failed to set contiuous mode.\n");
+				     "Error: Failed to set continuous mode.\n");
 
 	/* Enable all channels and trigger conversions */
 	return regmap_write(st->regmap, LTC2991_CH_EN_TRIGGER,
-- 
2.39.2
Re: [PATCH][next] hwmon: ltc2991: Fix spelling mistake "contiuous" -> "continuous"
Posted by Guenter Roeck 2 years, 1 month ago
On Tue, Oct 31, 2023 at 08:42:40AM +0000, Colin Ian King wrote:
> There is a spelling mistake in a dev_err_probe messages. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Applied.

Thanks,
Guenter