From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Vijendar Mukunda <vijendar.mukunda@amd.com>,
broonie@kernel.org, alsa-devel@alsa-project.org
Cc: Sunil-kumar.Dommati@amd.com, Takashi Iwai <tiwai@suse.com>,
Liam Girdwood <lgirdwood@gmail.com>,
open list <linux-kernel@vger.kernel.org>,
Alexander.Deucher@amd.com, krisman@collabora.com
Subject: Re: [PATCH V3 05/12] ASoC: amd: add ACP5x PCM platform driver
Date: Mon, 19 Jul 2021 13:09:12 -0500 [thread overview]
Message-ID: <f476dc4a-8185-77fd-d469-728aebdc6f65@linux.intel.com> (raw)
In-Reply-To: <20210719165140.16143-6-vijendar.mukunda@amd.com>
> +static int acp5x_audio_probe(struct platform_device *pdev)
> +{
> + struct resource *res;
> + struct i2s_dev_data *adata;
> + int status;
> +
> + if (!pdev->dev.platform_data) {
> + dev_err(&pdev->dev, "platform_data not retrieved\n");
> + return -ENODEV;
> + }
> + irqflags = *((unsigned int *)(pdev->dev.platform_data));
> +
> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> + if (!res) {
> + dev_err(&pdev->dev, "IORESOURCE_MEM FAILED\n");
> + return -ENODEV;
> + }
> +
> + adata = devm_kzalloc(&pdev->dev, sizeof(*adata), GFP_KERNEL);
> + if (!adata)
> + return -ENOMEM;
> +
> + adata->acp5x_base = devm_ioremap(&pdev->dev, res->start,
> + resource_size(res));
> + if (!adata->acp5x_base)
> + return -ENOMEM;
> + dev_set_drvdata(&pdev->dev, adata);
> + status = devm_snd_soc_register_component(&pdev->dev,
> + &acp5x_i2s_component,
> + NULL, 0);
> + if (status) {
> + dev_err(&pdev->dev, "Fail to register acp i2s component\n");
> + return -ENODEV;
Unclear why you need to change the error code explicitly to -ENODEV?
return status?
> + }
> + return 0;
> +}
> +
WARNING: multiple messages have this Message-ID (diff)
From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Vijendar Mukunda <vijendar.mukunda@amd.com>,
broonie@kernel.org, alsa-devel@alsa-project.org
Cc: Sunil-kumar.Dommati@amd.com,
open list <linux-kernel@vger.kernel.org>,
Takashi Iwai <tiwai@suse.com>,
Liam Girdwood <lgirdwood@gmail.com>,
Alexander.Deucher@amd.com, krisman@collabora.com
Subject: Re: [PATCH V3 05/12] ASoC: amd: add ACP5x PCM platform driver
Date: Mon, 19 Jul 2021 13:09:12 -0500 [thread overview]
Message-ID: <f476dc4a-8185-77fd-d469-728aebdc6f65@linux.intel.com> (raw)
In-Reply-To: <20210719165140.16143-6-vijendar.mukunda@amd.com>
> +static int acp5x_audio_probe(struct platform_device *pdev)
> +{
> + struct resource *res;
> + struct i2s_dev_data *adata;
> + int status;
> +
> + if (!pdev->dev.platform_data) {
> + dev_err(&pdev->dev, "platform_data not retrieved\n");
> + return -ENODEV;
> + }
> + irqflags = *((unsigned int *)(pdev->dev.platform_data));
> +
> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> + if (!res) {
> + dev_err(&pdev->dev, "IORESOURCE_MEM FAILED\n");
> + return -ENODEV;
> + }
> +
> + adata = devm_kzalloc(&pdev->dev, sizeof(*adata), GFP_KERNEL);
> + if (!adata)
> + return -ENOMEM;
> +
> + adata->acp5x_base = devm_ioremap(&pdev->dev, res->start,
> + resource_size(res));
> + if (!adata->acp5x_base)
> + return -ENOMEM;
> + dev_set_drvdata(&pdev->dev, adata);
> + status = devm_snd_soc_register_component(&pdev->dev,
> + &acp5x_i2s_component,
> + NULL, 0);
> + if (status) {
> + dev_err(&pdev->dev, "Fail to register acp i2s component\n");
> + return -ENODEV;
Unclear why you need to change the error code explicitly to -ENODEV?
return status?
> + }
> + return 0;
> +}
> +
next prev parent reply other threads:[~2021-07-19 18:25 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-19 16:51 [PATCH V3 00/12] Add Vangogh ACP ASoC driver Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 01/12] ASoC: amd: add Vangogh ACP5x IP register header Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 02/12] ASoC: amd: add Vangogh ACP PCI driver Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 03/12] ASoc: amd: add acp5x init/de-init functions Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 04/12] ASoC: amd: create acp5x platform devices Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 18:07 ` Pierre-Louis Bossart
2021-07-19 18:07 ` Pierre-Louis Bossart
2021-07-19 19:17 ` Mukunda,Vijendar
2021-07-19 19:17 ` Mukunda,Vijendar
2021-07-19 16:51 ` [PATCH V3 05/12] ASoC: amd: add ACP5x PCM platform driver Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 18:09 ` Pierre-Louis Bossart [this message]
2021-07-19 18:09 ` Pierre-Louis Bossart
2021-07-19 19:05 ` Mukunda,Vijendar
2021-07-19 19:05 ` Mukunda,Vijendar
2021-07-19 16:51 ` [PATCH V3 06/12] ASoC: amd: irq handler changes for ACP5x PCM dma driver Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 18:11 ` Pierre-Louis Bossart
2021-07-19 18:11 ` Pierre-Louis Bossart
2021-07-19 19:08 ` Mukunda,Vijendar
2021-07-19 19:08 ` Mukunda,Vijendar
2021-07-19 16:51 ` [PATCH V3 07/12] ASoC: amd: add ACP5x pcm dma driver ops Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 08/12] ASoC: amd: add vangogh i2s controller driver Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 09/12] ASoC: amd: add vangogh i2s dai driver ops Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 10/12] ASoC: amd: add vangogh pci driver pm ops Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 11/12] ASoC: amd: add vangogh i2s dma " Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
2021-07-19 18:13 ` Pierre-Louis Bossart
2021-07-19 18:13 ` Pierre-Louis Bossart
2021-07-19 19:19 ` Mukunda,Vijendar
2021-07-19 19:19 ` Mukunda,Vijendar
2021-07-19 16:51 ` [PATCH V3 12/12] ASoC: amd: enable vangogh acp5x driver build Vijendar Mukunda
2021-07-19 16:51 ` Vijendar Mukunda
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f476dc4a-8185-77fd-d469-728aebdc6f65@linux.intel.com \
--to=pierre-louis.bossart@linux.intel.com \
--cc=Alexander.Deucher@amd.com \
--cc=Sunil-kumar.Dommati@amd.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=krisman@collabora.com \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=tiwai@suse.com \
--cc=vijendar.mukunda@amd.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.