Message ID | 20240423074428.1313777-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | fe2a84133724ef56d2c99f2be5d0e06c4b8395c1 |
Headers | show |
Series | [next] ASoc: PCM6240: Fix spelling mistake: "deley" -> "delay" | expand |
On Tue, 23 Apr 2024 08:44:28 +0100, Colin Ian King wrote: > There is a spelling mistake in a dev_err message. Fix it. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoc: PCM6240: Fix spelling mistake: "deley" -> "delay" commit: fe2a84133724ef56d2c99f2be5d0e06c4b8395c1 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/pcm6240.c b/sound/soc/codecs/pcm6240.c index 93d592dbee66..86e126783a1d 100644 --- a/sound/soc/codecs/pcm6240.c +++ b/sound/soc/codecs/pcm6240.c @@ -1772,7 +1772,7 @@ static int pcmdev_delay(struct pcmdevice_priv *pcm_dev, int offset = 2; if (offset + 2 > sublocksize) { - dev_err(pcm_dev->dev, "%s: dev-%d deley out of boundary\n", + dev_err(pcm_dev->dev, "%s: dev-%d delay out of boundary\n", __func__, devn); return -EINVAL; }
There is a spelling mistake in a dev_err message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- sound/soc/codecs/pcm6240.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)