aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-11-18 04:16:22 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-11-22 08:02:17 -0500
commitdbb1f516375b3019373f2177b46e334b47a6d8bf (patch)
treebc0a204519024645c86047ba889fa6837af1cbc3
parent717b8fae3873b4c83dda2274e8190f538c442000 (diff)
ASoC: cs42l73: Make inv and format to be unsigned int
Fix below smatch warning: sound/soc/codecs/cs42l73.c +1030 cs42l73_set_dai_fmt(53) error: inv is never equal to 1024 (wrong type 0 - 255). sound/soc/codecs/cs42l73.c +1032 cs42l73_set_dai_fmt(55) error: inv is never equal to 768 (wrong type 0 - 255). sound/soc/codecs/cs42l73.c +1036 cs42l73_set_dai_fmt(59) error: inv is never equal to 1024 (wrong type 0 - 255). Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Brian Austin <brian.austin@cirrus.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r--sound/soc/codecs/cs42l73.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/cs42l73.c b/sound/soc/codecs/cs42l73.c
index 672da66dc662..9f52a940bcad 100644
--- a/sound/soc/codecs/cs42l73.c
+++ b/sound/soc/codecs/cs42l73.c
@@ -979,7 +979,7 @@ static int cs42l73_set_dai_fmt(struct snd_soc_dai *codec_dai, unsigned int fmt)
979 struct snd_soc_codec *codec = codec_dai->codec; 979 struct snd_soc_codec *codec = codec_dai->codec;
980 struct cs42l73_private *priv = snd_soc_codec_get_drvdata(codec); 980 struct cs42l73_private *priv = snd_soc_codec_get_drvdata(codec);
981 u8 id = codec_dai->id; 981 u8 id = codec_dai->id;
982 u8 inv, format; 982 unsigned int inv, format;
983 u8 spc, mmcc; 983 u8 spc, mmcc;
984 984
985 spc = snd_soc_read(codec, CS42L73_SPC(id)); 985 spc = snd_soc_read(codec, CS42L73_SPC(id));