Message ID | 20210827185003.507006-1-colin.king@canonical.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 2a6a0a03117ee349308ab77ac0925fdca8ef32f5 |
Headers | show |
Series | ASoC: samsung: s3c24xx_simtec: fix spelling mistake "devicec" -> "device" | expand |
On 27/08/2021 20:50, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > There is a spelling mistake in a dev_err error message. Fix it. > > Signed-off-by: Colin Ian King <colin.king@canonical.com> > --- > sound/soc/samsung/s3c24xx_simtec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Best regards, Krzysztof
On Fri, 27 Aug 2021 19:50:03 +0100, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > There is a spelling mistake in a dev_err error message. Fix it. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: samsung: s3c24xx_simtec: fix spelling mistake "devicec" -> "device" commit: 2a6a0a03117ee349308ab77ac0925fdca8ef32f5 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/samsung/s3c24xx_simtec.c b/sound/soc/samsung/s3c24xx_simtec.c index 81a29d12c57d..0cc66774b85d 100644 --- a/sound/soc/samsung/s3c24xx_simtec.c +++ b/sound/soc/samsung/s3c24xx_simtec.c @@ -327,7 +327,7 @@ int simtec_audio_core_probe(struct platform_device *pdev, snd_dev = platform_device_alloc("soc-audio", -1); if (!snd_dev) { - dev_err(&pdev->dev, "failed to alloc soc-audio devicec\n"); + dev_err(&pdev->dev, "failed to alloc soc-audio device\n"); ret = -ENOMEM; goto err_gpio; }