2023-10-31 08:43:04

by Colin Ian King

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

There is a spelling mistake in a dev_err_probe messages. Fix it.

Signed-off-by: Colin Ian King <[email protected]>
---
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


2023-11-02 03:09:15

by Guenter Roeck

[permalink] [raw]
Subject: Re: [PATCH][next] hwmon: ltc2991: Fix spelling mistake "contiuous" -> "continuous"

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 <[email protected]>

Applied.

Thanks,
Guenter