ASoC: tda7419: use true and false for boolean values

Return statements in functions returning bool should use true or false
instead of an integer value.

This code was detected with the help of Coccinelle.

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Gustavo A. R. Silva 2018-08-04 16:50:27 -05:00 committed by Mark Brown
parent 508e8641f8
commit 10754bfc05
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -142,9 +142,9 @@ struct tda7419_vol_control {
static inline bool tda7419_vol_is_stereo(struct tda7419_vol_control *tvc)
{
if (tvc->reg == tvc->rreg)
return 0;
return false;
return 1;
return true;
}
static int tda7419_vol_info(struct snd_kcontrol *kcontrol,