]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: da7213: use true and false for boolean values
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Sat, 4 Aug 2018 21:54:10 +0000 (16:54 -0500)
committerMark Brown <broonie@kernel.org>
Mon, 6 Aug 2018 11:35:40 +0000 (12:35 +0100)
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>
sound/soc/codecs/da7213.c

index 54cb5f24969f3137ff3bfc2c2de16bb07499cae1..92d006a5283ed71d74f4f8047509218fcc7d162f 100644 (file)
@@ -1140,9 +1140,9 @@ static bool da7213_volatile_register(struct device *dev, unsigned int reg)
        case DA7213_ALC_OFFSET_AUTO_M_R:
        case DA7213_ALC_OFFSET_AUTO_U_R:
        case DA7213_ALC_CIC_OP_LVL_DATA:
-               return 1;
+               return true;
        default:
-               return 0;
+               return false;
        }
 }