Message ID | 20190927103858.631-1-colin.king@canonical.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ASoC: amd: acp3x: clean up an indentation issue | expand |
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.
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
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);