Message ID | 20231205101740.2820813-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 0be9595d8a1170474867b8ee2caf14394db45d8b |
Headers | show |
Series | [next] ASoC: cs4271: Fix spelling mistake "retrieveing" -> "retrieving" | expand |
On Tue, Dec 05, 2023 at 10:17:40AM +0000, Colin Ian King wrote: > There is a spelling mistake in a dev_err_probe error message. Fix it. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com> Thanks, Charles
On Tue, 05 Dec 2023 10:17:40 +0000, Colin Ian King wrote: > There is a spelling mistake in a dev_err_probe error message. Fix it. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: cs4271: Fix spelling mistake "retrieveing" -> "retrieving" commit: 0be9595d8a1170474867b8ee2caf14394db45d8b All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/sound/soc/codecs/cs4271.c b/sound/soc/codecs/cs4271.c index 74a84832d958..e864188ae5eb 100644 --- a/sound/soc/codecs/cs4271.c +++ b/sound/soc/codecs/cs4271.c @@ -643,7 +643,7 @@ static int cs4271_common_probe(struct device *dev, cs4271->reset = devm_gpiod_get_optional(dev, "reset", GPIOD_ASIS); if (IS_ERR(cs4271->reset)) return dev_err_probe(dev, PTR_ERR(cs4271->reset), - "error retrieveing RESET GPIO\n"); + "error retrieving RESET GPIO\n"); gpiod_set_consumer_name(cs4271->reset, "CS4271 Reset"); for (i = 0; i < ARRAY_SIZE(supply_names); i++)
There is a spelling mistake in a dev_err_probe error message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- sound/soc/codecs/cs4271.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)