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