* [patch] ASoC: fsl: add an error check
@ 2015-06-10 15:37 Dan Carpenter
2015-06-10 16:55 ` Nicolin Chen
2015-06-10 17:33 ` Mark Brown
0 siblings, 2 replies; 4+ messages in thread
From: Dan Carpenter @ 2015-06-10 15:37 UTC (permalink / raw)
To: Timur Tabi, Nicolin Chen
Cc: Xiubo Li, Liam Girdwood, Mark Brown, Jaroslav Kysela,
Takashi Iwai, alsa-devel, linuxppc-dev, kernel-janitors
My static checker complains that:
sound/soc/fsl/imx-wm8962.c:196 imx_wm8962_probe() warn:
we tested 'ret' before and it was 'false'
The intent was that we use "ret" to check imx_audmux_v2_configure_port().
Fixes: 8de2ae2a7f1f ('ASoC: fsl: add imx-wm8962 machine driver')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
I assume checking for an error here will not change anything but I have
not tested this patch.
diff --git a/sound/soc/fsl/imx-wm8962.c b/sound/soc/fsl/imx-wm8962.c
index cd146d4..b38b98c 100644
--- a/sound/soc/fsl/imx-wm8962.c
+++ b/sound/soc/fsl/imx-wm8962.c
@@ -190,7 +190,7 @@ static int imx_wm8962_probe(struct platform_device *pdev)
dev_err(&pdev->dev, "audmux internal port setup failed\n");
return ret;
}
- imx_audmux_v2_configure_port(ext_port,
+ ret = imx_audmux_v2_configure_port(ext_port,
IMX_AUDMUX_V2_PTCR_SYN,
IMX_AUDMUX_V2_PDCR_RXDSEL(int_port));
if (ret) {
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [patch] ASoC: fsl: add an error check
2015-06-10 15:37 [patch] ASoC: fsl: add an error check Dan Carpenter
@ 2015-06-10 16:55 ` Nicolin Chen
2015-06-10 19:17 ` Dan Carpenter
2015-06-10 17:33 ` Mark Brown
1 sibling, 1 reply; 4+ messages in thread
From: Nicolin Chen @ 2015-06-10 16:55 UTC (permalink / raw)
To: Dan Carpenter
Cc: Timur Tabi, Xiubo Li, Liam Girdwood, Mark Brown, Jaroslav Kysela,
Takashi Iwai, alsa-devel, linuxppc-dev, kernel-janitors
On Wed, Jun 10, 2015 at 06:37:23PM +0300, Dan Carpenter wrote:
> My static checker complains that:
>
> sound/soc/fsl/imx-wm8962.c:196 imx_wm8962_probe() warn:
> we tested 'ret' before and it was 'false'
>
> The intent was that we use "ret" to check imx_audmux_v2_configure_port().
>
> Fixes: 8de2ae2a7f1f ('ASoC: fsl: add imx-wm8962 machine driver')
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Could you please use an subject like:
ASoC: imx-wm8962: Add a missing error check
(Since it only applies to this file)
Otherwise, Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>
Thank you indeed for the fix
Nicolin
> ---
> I assume checking for an error here will not change anything but I have
> not tested this patch.
>
> diff --git a/sound/soc/fsl/imx-wm8962.c b/sound/soc/fsl/imx-wm8962.c
> index cd146d4..b38b98c 100644
> --- a/sound/soc/fsl/imx-wm8962.c
> +++ b/sound/soc/fsl/imx-wm8962.c
> @@ -190,7 +190,7 @@ static int imx_wm8962_probe(struct platform_device *pdev)
> dev_err(&pdev->dev, "audmux internal port setup failed\n");
> return ret;
> }
> - imx_audmux_v2_configure_port(ext_port,
> + ret = imx_audmux_v2_configure_port(ext_port,
> IMX_AUDMUX_V2_PTCR_SYN,
> IMX_AUDMUX_V2_PDCR_RXDSEL(int_port));
> if (ret) {
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch] ASoC: fsl: add an error check
2015-06-10 16:55 ` Nicolin Chen
@ 2015-06-10 19:17 ` Dan Carpenter
0 siblings, 0 replies; 4+ messages in thread
From: Dan Carpenter @ 2015-06-10 19:17 UTC (permalink / raw)
To: Nicolin Chen
Cc: Timur Tabi, Xiubo Li, Liam Girdwood, Mark Brown, Jaroslav Kysela,
Takashi Iwai, alsa-devel, linuxppc-dev, kernel-janitors
> Could you please use an subject like:
> ASoC: imx-wm8962: Add a missing error check
> (Since it only applies to this file)
>
I have been meaning to say something about this.
This is sort of a recurrent problem for me because I'm often the first
person to touch a driver after it's added. I just copied your patch
prefix from 8de2ae2a7f1f ('ASoC: fsl: add imx-wm8962 machine driver').
Really you should also have used "ASoC: imx-wm8962:" as well.
This is the third new driver today where I have faced this situation.
regards,
dan carpenter
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch] ASoC: fsl: add an error check
2015-06-10 15:37 [patch] ASoC: fsl: add an error check Dan Carpenter
2015-06-10 16:55 ` Nicolin Chen
@ 2015-06-10 17:33 ` Mark Brown
1 sibling, 0 replies; 4+ messages in thread
From: Mark Brown @ 2015-06-10 17:33 UTC (permalink / raw)
To: Dan Carpenter
Cc: Timur Tabi, Nicolin Chen, Xiubo Li, Liam Girdwood,
Jaroslav Kysela, Takashi Iwai, alsa-devel, linuxppc-dev,
kernel-janitors
[-- Attachment #1: Type: text/plain, Size: 231 bytes --]
On Wed, Jun 10, 2015 at 06:37:23PM +0300, Dan Carpenter wrote:
> My static checker complains that:
>
> sound/soc/fsl/imx-wm8962.c:196 imx_wm8962_probe() warn:
> we tested 'ret' before and it was 'false'
Applied, thanks.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-06-10 19:18 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-10 15:37 [patch] ASoC: fsl: add an error check Dan Carpenter
2015-06-10 16:55 ` Nicolin Chen
2015-06-10 19:17 ` Dan Carpenter
2015-06-10 17:33 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).