* [PATCH] ASoC: amd: acp3x: clean up an indentation issue
@ 2019-09-27 10:38 Colin King
2019-09-27 10:43 ` Colin Ian King
0 siblings, 1 reply; 3+ messages in thread
From: Colin King @ 2019-09-27 10:38 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Vijendar Mukunda, alsa-devel
Cc: kernel-janitors, linux-kernel
From: Colin Ian King <colin.king@canonical.com>
There is a return statement that is indented too deeply, remove
the extraneous tab.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
sound/soc/amd/raven/acp3x-pcm-dma.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/amd/raven/acp3x-pcm-dma.c b/sound/soc/amd/raven/acp3x-pcm-dma.c
index bc4dfafdfcd1..ea57088d50ce 100644
--- a/sound/soc/amd/raven/acp3x-pcm-dma.c
+++ b/sound/soc/amd/raven/acp3x-pcm-dma.c
@@ -631,7 +631,7 @@ static int acp3x_audio_probe(struct platform_device *pdev)
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {
dev_err(&pdev->dev, "IORESOURCE_IRQ FAILED\n");
- return -ENODEV;
+ return -ENODEV;
}
adata = devm_kzalloc(&pdev->dev, sizeof(*adata), GFP_KERNEL);
--
2.20.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ASoC: amd: acp3x: clean up an indentation issue
2019-09-27 10:38 [PATCH] ASoC: amd: acp3x: clean up an indentation issue Colin King
@ 2019-09-27 10:43 ` Colin Ian King
2019-09-27 14:27 ` Dan Carpenter
0 siblings, 1 reply; 3+ messages in thread
From: Colin Ian King @ 2019-09-27 10:43 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Vijendar Mukunda, alsa-devel
Cc: kernel-janitors, linux-kernel
On 27/09/2019 11:38, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> There is a return statement that is indented too deeply, remove
> the extraneous tab.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> sound/soc/amd/raven/acp3x-pcm-dma.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sound/soc/amd/raven/acp3x-pcm-dma.c b/sound/soc/amd/raven/acp3x-pcm-dma.c
> index bc4dfafdfcd1..ea57088d50ce 100644
> --- a/sound/soc/amd/raven/acp3x-pcm-dma.c
> +++ b/sound/soc/amd/raven/acp3x-pcm-dma.c
> @@ -631,7 +631,7 @@ static int acp3x_audio_probe(struct platform_device *pdev)
> res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> if (!res) {
> dev_err(&pdev->dev, "IORESOURCE_IRQ FAILED\n");
> - return -ENODEV;
> + return -ENODEV;
> }
>
> adata = devm_kzalloc(&pdev->dev, sizeof(*adata), GFP_KERNEL);
>
Oops, I've sent this fix before. ignore. apologies.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ASoC: amd: acp3x: clean up an indentation issue
2019-09-27 10:43 ` Colin Ian King
@ 2019-09-27 14:27 ` Dan Carpenter
0 siblings, 0 replies; 3+ messages in thread
From: Dan Carpenter @ 2019-09-27 14:27 UTC (permalink / raw)
To: Colin Ian King
Cc: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Vijendar Mukunda, alsa-devel, kernel-janitors, linux-kernel
On Fri, Sep 27, 2019 at 11:43:31AM +0100, Colin Ian King wrote:
> On 27/09/2019 11:38, Colin King wrote:
> > From: Colin Ian King <colin.king@canonical.com>
> >
> > There is a return statement that is indented too deeply, remove
> > the extraneous tab.
> >
> > Signed-off-by: Colin Ian King <colin.king@canonical.com>
> > ---
> > sound/soc/amd/raven/acp3x-pcm-dma.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/sound/soc/amd/raven/acp3x-pcm-dma.c b/sound/soc/amd/raven/acp3x-pcm-dma.c
> > index bc4dfafdfcd1..ea57088d50ce 100644
> > --- a/sound/soc/amd/raven/acp3x-pcm-dma.c
> > +++ b/sound/soc/amd/raven/acp3x-pcm-dma.c
> > @@ -631,7 +631,7 @@ static int acp3x_audio_probe(struct platform_device *pdev)
> > res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > if (!res) {
> > dev_err(&pdev->dev, "IORESOURCE_IRQ FAILED\n");
> > - return -ENODEV;
> > + return -ENODEV;
> > }
> >
> > adata = devm_kzalloc(&pdev->dev, sizeof(*adata), GFP_KERNEL);
> >
> Oops, I've sent this fix before. ignore. apologies.
Haha. I used to do this all the time. Now my QC script searches my
outbox. I still send duplicates sometimes if I'm travelling and forget
to copy my outbox over.
regards,
dan carpenter
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-09-27 14:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-27 10:38 [PATCH] ASoC: amd: acp3x: clean up an indentation issue Colin King
2019-09-27 10:43 ` Colin Ian King
2019-09-27 14:27 ` Dan Carpenter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox