diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-01-30 13:05:37 +0300 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2020-01-31 12:52:13 +0300 |
commit | 8c173d5e044d7e7fc9f6070c0fc1c79c0f8256a6 (patch) | |
tree | 1fb8990b27baaa2a01d6a9eb066eb32d1c476179 /drivers | |
parent | fe27f13d677ccd826386094df6977cfbc13ccf5e (diff) | |
download | linux-8c173d5e044d7e7fc9f6070c0fc1c79c0f8256a6.tar.xz |
thermal: stm32: fix spelling mistake "preprare" -> "prepare"
There is a spelling mistake in a dev_err error message. Fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20200130100537.18069-1-colin.king@canonical.com
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/thermal/st/stm_thermal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/st/stm_thermal.c b/drivers/thermal/st/stm_thermal.c index 1cc5e6c5709e..ad9e3bf8fdf6 100644 --- a/drivers/thermal/st/stm_thermal.c +++ b/drivers/thermal/st/stm_thermal.c @@ -535,7 +535,7 @@ static int stm_thermal_probe(struct platform_device *pdev) /* Configure and enable HW sensor */ ret = stm_thermal_prepare(sensor); if (ret) { - dev_err(&pdev->dev, "Error preprare sensor: %d\n", ret); + dev_err(&pdev->dev, "Error prepare sensor: %d\n", ret); return ret; } |