* [PATCH v2 0/2] ASoC: qcom: fix static checker warnings.
@ 2016-03-31 18:23 Srinivas Kandagatla
2016-03-31 18:23 ` [PATCH v2 1/2] ASoC: qcom: Fix uninitialized symbol warning Srinivas Kandagatla
2016-03-31 18:23 ` [PATCH v2 2/2] ASoC: qcom: remove IS_ERR_VALUE usage on int Srinivas Kandagatla
0 siblings, 2 replies; 5+ messages in thread
From: Srinivas Kandagatla @ 2016-03-31 18:23 UTC (permalink / raw)
To: Mark Brown, alsa-devel, kwestfie; +Cc: plai, Srinivas Kandagatla, tiwai
This patchset fixes 2 static checker warnings reported by Dan Carpenter.
Thanks,
srini
Srinivas Kandagatla (2):
ASoC: qcom: Fix uninitialized symbol warning.
ASoC: qcom: remove IS_ERR_VALUE usage on int.
sound/soc/qcom/lpass-platform.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
--
2.5.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 1/2] ASoC: qcom: Fix uninitialized symbol warning.
2016-03-31 18:23 [PATCH v2 0/2] ASoC: qcom: fix static checker warnings Srinivas Kandagatla
@ 2016-03-31 18:23 ` Srinivas Kandagatla
2016-03-31 18:45 ` Applied "ASoC: qcom: Fix uninitialized symbol warning." to the asoc tree Mark Brown
2016-03-31 18:23 ` [PATCH v2 2/2] ASoC: qcom: remove IS_ERR_VALUE usage on int Srinivas Kandagatla
1 sibling, 1 reply; 5+ messages in thread
From: Srinivas Kandagatla @ 2016-03-31 18:23 UTC (permalink / raw)
To: Mark Brown, alsa-devel, kwestfie; +Cc: plai, Srinivas Kandagatla, tiwai
This patch fixes following static checker warning, by initializing the
ret to -EINVAL, as one of the code path in lpass_platform_pcm_new()
uses this variable uninitialized.
sound/soc/qcom/lpass-platform.c:555 lpass_platform_pcm_new()
error: uninitialized symbol 'ret'.
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
---
Changes since v1:
- Split the patch into two as suggested by Mark.
sound/soc/qcom/lpass-platform.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/qcom/lpass-platform.c b/sound/soc/qcom/lpass-platform.c
index 6e86654..f5cae01 100644
--- a/sound/soc/qcom/lpass-platform.c
+++ b/sound/soc/qcom/lpass-platform.c
@@ -474,7 +474,7 @@ static int lpass_platform_pcm_new(struct snd_soc_pcm_runtime *soc_runtime)
struct lpass_data *drvdata =
snd_soc_platform_get_drvdata(soc_runtime->platform);
struct lpass_variant *v = drvdata->variant;
- int ret;
+ int ret = -EINVAL;
struct lpass_pcm_data *data;
size_t size = lpass_platform_pcm_hardware.buffer_bytes_max;
--
2.5.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 2/2] ASoC: qcom: remove IS_ERR_VALUE usage on int.
2016-03-31 18:23 [PATCH v2 0/2] ASoC: qcom: fix static checker warnings Srinivas Kandagatla
2016-03-31 18:23 ` [PATCH v2 1/2] ASoC: qcom: Fix uninitialized symbol warning Srinivas Kandagatla
@ 2016-03-31 18:23 ` Srinivas Kandagatla
2016-03-31 18:45 ` Applied "ASoC: qcom: remove IS_ERR_VALUE usage on int." to the asoc tree Mark Brown
1 sibling, 1 reply; 5+ messages in thread
From: Srinivas Kandagatla @ 2016-03-31 18:23 UTC (permalink / raw)
To: Mark Brown, alsa-devel, kwestfie; +Cc: plai, Srinivas Kandagatla, tiwai
IS_ERR_VALUE should be used only with unsigned long type,
signed types should use comparison 'ret < 0'
This patch removes such usages.
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
---
Changes since v1
- split the patch into two as suggested by Mark.
sound/soc/qcom/lpass-platform.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/qcom/lpass-platform.c b/sound/soc/qcom/lpass-platform.c
index f5cae01..db000c6 100644
--- a/sound/soc/qcom/lpass-platform.c
+++ b/sound/soc/qcom/lpass-platform.c
@@ -491,7 +491,7 @@ static int lpass_platform_pcm_new(struct snd_soc_pcm_runtime *soc_runtime)
data->rdma_ch = v->alloc_dma_channel(drvdata,
SNDRV_PCM_STREAM_PLAYBACK);
- if (IS_ERR_VALUE(data->rdma_ch))
+ if (data->rdma_ch < 0)
return data->rdma_ch;
drvdata->substream[data->rdma_ch] = psubstream;
@@ -518,8 +518,10 @@ static int lpass_platform_pcm_new(struct snd_soc_pcm_runtime *soc_runtime)
data->wrdma_ch = v->alloc_dma_channel(drvdata,
SNDRV_PCM_STREAM_CAPTURE);
- if (IS_ERR_VALUE(data->wrdma_ch))
+ if (data->wrdma_ch < 0) {
+ ret = data->wrdma_ch;
goto capture_alloc_err;
+ }
drvdata->substream[data->wrdma_ch] = csubstream;
--
2.5.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Applied "ASoC: qcom: remove IS_ERR_VALUE usage on int." to the asoc tree
2016-03-31 18:23 ` [PATCH v2 2/2] ASoC: qcom: remove IS_ERR_VALUE usage on int Srinivas Kandagatla
@ 2016-03-31 18:45 ` Mark Brown
0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2016-03-31 18:45 UTC (permalink / raw)
To: Dan Carpenter, Srinivas Kandagatla, Mark Brown; +Cc: alsa-devel
The patch
ASoC: qcom: remove IS_ERR_VALUE usage on int.
has been applied to the asoc tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
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
>From cef794f76485f4a4e6affd851ae9f9d0eb4287a5 Mon Sep 17 00:00:00 2001
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Date: Thu, 31 Mar 2016 19:23:15 +0100
Subject: [PATCH] ASoC: qcom: remove IS_ERR_VALUE usage on int.
IS_ERR_VALUE should be used only with unsigned long type,
signed types should use comparison 'ret < 0'
This patch removes such usages.
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/qcom/lpass-platform.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/qcom/lpass-platform.c b/sound/soc/qcom/lpass-platform.c
index f5cae01d18bd..db000c6987a1 100644
--- a/sound/soc/qcom/lpass-platform.c
+++ b/sound/soc/qcom/lpass-platform.c
@@ -491,7 +491,7 @@ static int lpass_platform_pcm_new(struct snd_soc_pcm_runtime *soc_runtime)
data->rdma_ch = v->alloc_dma_channel(drvdata,
SNDRV_PCM_STREAM_PLAYBACK);
- if (IS_ERR_VALUE(data->rdma_ch))
+ if (data->rdma_ch < 0)
return data->rdma_ch;
drvdata->substream[data->rdma_ch] = psubstream;
@@ -518,8 +518,10 @@ static int lpass_platform_pcm_new(struct snd_soc_pcm_runtime *soc_runtime)
data->wrdma_ch = v->alloc_dma_channel(drvdata,
SNDRV_PCM_STREAM_CAPTURE);
- if (IS_ERR_VALUE(data->wrdma_ch))
+ if (data->wrdma_ch < 0) {
+ ret = data->wrdma_ch;
goto capture_alloc_err;
+ }
drvdata->substream[data->wrdma_ch] = csubstream;
--
2.8.0.rc3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Applied "ASoC: qcom: Fix uninitialized symbol warning." to the asoc tree
2016-03-31 18:23 ` [PATCH v2 1/2] ASoC: qcom: Fix uninitialized symbol warning Srinivas Kandagatla
@ 2016-03-31 18:45 ` Mark Brown
0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2016-03-31 18:45 UTC (permalink / raw)
To: Dan Carpenter, Srinivas Kandagatla, Mark Brown; +Cc: alsa-devel
The patch
ASoC: qcom: Fix uninitialized symbol warning.
has been applied to the asoc tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
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
>From ea4d25d5a3709cba0d3df2195edffc400170394f Mon Sep 17 00:00:00 2001
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Date: Thu, 31 Mar 2016 19:23:14 +0100
Subject: [PATCH] ASoC: qcom: Fix uninitialized symbol warning.
This patch fixes following static checker warning, by initializing the
ret to -EINVAL, as one of the code path in lpass_platform_pcm_new()
uses this variable uninitialized.
sound/soc/qcom/lpass-platform.c:555 lpass_platform_pcm_new()
error: uninitialized symbol 'ret'.
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/qcom/lpass-platform.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/qcom/lpass-platform.c b/sound/soc/qcom/lpass-platform.c
index 6e8665430bd5..f5cae01d18bd 100644
--- a/sound/soc/qcom/lpass-platform.c
+++ b/sound/soc/qcom/lpass-platform.c
@@ -474,7 +474,7 @@ static int lpass_platform_pcm_new(struct snd_soc_pcm_runtime *soc_runtime)
struct lpass_data *drvdata =
snd_soc_platform_get_drvdata(soc_runtime->platform);
struct lpass_variant *v = drvdata->variant;
- int ret;
+ int ret = -EINVAL;
struct lpass_pcm_data *data;
size_t size = lpass_platform_pcm_hardware.buffer_bytes_max;
--
2.8.0.rc3
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-03-31 18:45 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-31 18:23 [PATCH v2 0/2] ASoC: qcom: fix static checker warnings Srinivas Kandagatla
2016-03-31 18:23 ` [PATCH v2 1/2] ASoC: qcom: Fix uninitialized symbol warning Srinivas Kandagatla
2016-03-31 18:45 ` Applied "ASoC: qcom: Fix uninitialized symbol warning." to the asoc tree Mark Brown
2016-03-31 18:23 ` [PATCH v2 2/2] ASoC: qcom: remove IS_ERR_VALUE usage on int Srinivas Kandagatla
2016-03-31 18:45 ` Applied "ASoC: qcom: remove IS_ERR_VALUE usage on int." to the asoc tree 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).