projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ff3a4f
)
ASoC: zx-tdm: remove redundant assignment to ts_width on error return path
author
Colin Ian King
<colin.king@canonical.com>
Wed, 31 Jul 2019 22:32:34 +0000
(23:32 +0100)
committer
Mark Brown
<broonie@kernel.org>
Thu, 1 Aug 2019 12:56:26 +0000
(13:56 +0100)
The value assigned to ts_width is never read on the error return path
so the assignment is redundant and can be removed. Remove it.
Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link:
https://lore.kernel.org/r/20190731223234.16153-1-colin.king@canonical.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/zte/zx-tdm.c
patch
|
blob
|
history
diff --git
a/sound/soc/zte/zx-tdm.c
b/sound/soc/zte/zx-tdm.c
index 5e877fe9ba7b9213f84a353ea57d6e42b8467595..0e5a05b25a7713372e6cc2ca32d9c34219805e39 100644
(file)
--- a/
sound/soc/zte/zx-tdm.c
+++ b/
sound/soc/zte/zx-tdm.c
@@
-211,7
+211,6
@@
static int zx_tdm_hw_params(struct snd_pcm_substream *substream,
ts_width = 1;
break;
default:
- ts_width = 0;
dev_err(socdai->dev, "Unknown data format\n");
return -EINVAL;
}