mirror of https://gitee.com/openkylin/linux.git
ASoC: tas5086: signedness bug in tas5086_hw_params()
"val" has to be signed for the error handling to work. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Daniel Mack <zonque@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
c300d6de53
commit
28dbd1611f
|
@ -251,7 +251,7 @@ static int tas5086_hw_params(struct snd_pcm_substream *substream,
|
|||
{
|
||||
struct snd_soc_codec *codec = dai->codec;
|
||||
struct tas5086_private *priv = snd_soc_codec_get_drvdata(codec);
|
||||
unsigned int val;
|
||||
int val;
|
||||
int ret;
|
||||
|
||||
priv->rate = params_rate(params);
|
||||
|
|
Loading…
Reference in New Issue