diff options
author | Pierre-Louis Bossart <[email protected]> | 2021-03-12 12:22:39 -0600 |
---|---|---|
committer | Mark Brown <[email protected]> | 2021-03-18 13:50:48 +0000 |
commit | f10280d5c59b8d83ae9e9e2307075cc7ad32a6b8 (patch) | |
tree | 8a95834dc0f6acefcfbf76792e833be012f9a981 | |
parent | a3966b254c481ee1890f75d809a52e5aa358c4b1 (diff) |
ASoC: pcm1681: remove useless assignment
cppcheck warning:
sound/soc/codecs/pcm1681.c:87:8: style: Variable 'i' is assigned a
value that is never used. [unreadVariable]
int i = 0, val = -1, enable = 0;
^
Signed-off-by: Pierre-Louis Bossart <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/codecs/pcm1681.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/pcm1681.c b/sound/soc/codecs/pcm1681.c index 07ed8fded471..5b78e9299c95 100644 --- a/sound/soc/codecs/pcm1681.c +++ b/sound/soc/codecs/pcm1681.c @@ -84,7 +84,7 @@ static const int pcm1681_deemph[] = { 44100, 48000, 32000 }; static int pcm1681_set_deemph(struct snd_soc_component *component) { struct pcm1681_private *priv = snd_soc_component_get_drvdata(component); - int i = 0, val = -1, enable = 0; + int i, val = -1, enable = 0; if (priv->deemph) { for (i = 0; i < ARRAY_SIZE(pcm1681_deemph); i++) { |