aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavo@embeddedor.com>2018-08-04 16:54:10 -0500
committerMark Brown <broonie@kernel.org>2018-08-06 12:35:40 +0100
commit1752a35acd8e837463fb7b7d9492b18e2a2ed5e3 (patch)
tree8bb472f373796c710ecf97bbd13741ad45ddefe8 /sound/soc
parentASoC: twl6040: use true and false for boolean values (diff)
downloadlinux-dev-1752a35acd8e837463fb7b7d9492b18e2a2ed5e3.tar.xz
linux-dev-1752a35acd8e837463fb7b7d9492b18e2a2ed5e3.zip
ASoC: da7213: 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>
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/codecs/da7213.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/da7213.c b/sound/soc/codecs/da7213.c
index 54cb5f24969f..92d006a5283e 100644
--- a/sound/soc/codecs/da7213.c
+++ b/sound/soc/codecs/da7213.c
@@ -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;
}
}