Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
UPSTREAM: ASoC: cs4271: Fix spelling mistake "retrieveing" -> "retrie…
Browse files Browse the repository at this point in the history
…ving"

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>
Link: https://lore.kernel.org/r/20231205101740.2820813-1-colin.i.king@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
(cherry picked from commit 0be9595
 https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master)

BUG=b:326869955
TEST=Test Audio use cases.

Change-Id: Ib20abf712865128820c2122edca9ab67ba63d180
Signed-off-by: Debi sahoo <debix.prasad.sahoo@intel.com>
Signed-off-by: Hubert Mazur <hmazur@google.com>
  • Loading branch information
ColinIanKing authored and nowicki-tomasz committed Sep 30, 2024
1 parent 1e9c127 commit 989dff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/codecs/cs4271.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++)
Expand Down

0 comments on commit 989dff2

Please sign in to comment.