diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-08-26 13:32:50 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2021-11-05 14:40:02 +0000 |
commit | ad70c03f211a9fad32af1c1b551738c741f7c751 (patch) | |
tree | 999932ae67557792ff89174351c66e4bcad5ed74 /drivers/mfd | |
parent | 48be356343d66615dc96d3b52f37ed9d878456ef (diff) | |
download | linux-ad70c03f211a9fad32af1c1b551738c741f7c751.tar.bz2 |
mfd: ti_am335x_tscadc: Fix spelling mistake "atleast" -> "at least"
There is a spelling mistake in a dev_err message. Fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/ti_am335x_tscadc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/ti_am335x_tscadc.c b/drivers/mfd/ti_am335x_tscadc.c index 740cae00dac2..07825cfd8aa8 100644 --- a/drivers/mfd/ti_am335x_tscadc.c +++ b/drivers/mfd/ti_am335x_tscadc.c @@ -186,7 +186,7 @@ static int ti_tscadc_probe(struct platform_device *pdev) } if (total_channels == 0) { - dev_err(&pdev->dev, "Need atleast one channel.\n"); + dev_err(&pdev->dev, "Need at least one channel.\n"); return -EINVAL; } |