This is a note to let you know that I've just added the patch titled regulator: fix spelling mistake "Cant" -> "Can't" to the 5.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: regulator-fix-spelling-mistake-cant-can-t.patch and it can be found in the queue-5.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit f14f581fe0ded77d10872c6c94491479c0b43507 Author: Colin Ian King <colin.i.king@xxxxxxxxx> Date: Mon Aug 10 10:39:31 2020 +0100 regulator: fix spelling mistake "Cant" -> "Can't" [ Upstream commit 09dad81e0f1701ea26babe2442a1478d6ad447d3 ] There is a spelling mistake in a dev_err message. Fix it. Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx> Link: https://lore.kernel.org/r/20200810093931.50624-1-colin.king@xxxxxxxxxxxxx Signed-off-by: Mark Brown <broonie@xxxxxxxxxx> Stable-dep-of: 02bcba0b9f9d ("regulator: Handle deferred clk") Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/drivers/regulator/fixed.c b/drivers/regulator/fixed.c index f81533070058e..145402cc9ef26 100644 --- a/drivers/regulator/fixed.c +++ b/drivers/regulator/fixed.c @@ -181,7 +181,7 @@ static int reg_fixed_voltage_probe(struct platform_device *pdev) drvdata->enable_clock = devm_clk_get(dev, NULL); if (IS_ERR(drvdata->enable_clock)) { - dev_err(dev, "Cant get enable-clock from devicetree\n"); + dev_err(dev, "Can't get enable-clock from devicetree\n"); return -ENOENT; } } else {