diff options
author | Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> | 2022-04-01 14:01:57 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-04-04 08:39:19 +0100 |
commit | 4fad3cc6eb962a6fe32ab9fb9d30b08a88298f63 (patch) | |
tree | 161a6448756e667417ec6191b42ac12ebb4c9ba5 /sound/soc/soc-topology.c | |
parent | 0db627c4f5df704d44699ed27dd81caa6d782a17 (diff) | |
download | lwn-4fad3cc6eb962a6fe32ab9fb9d30b08a88298f63.tar.gz lwn-4fad3cc6eb962a6fe32ab9fb9d30b08a88298f63.zip |
ASoC: topology: Return bool instead of int
In practice soc_tplg_is_eof() returns boolean value and caller uses the
return value in such way, so convert the function to really do it.
Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com>
Link: https://lore.kernel.org/r/20220401120200.4047867-4-amadeuszx.slawinski@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-topology.c')
-rw-r--r-- | sound/soc/soc-topology.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/soc-topology.c b/sound/soc/soc-topology.c index f5446aac8ac6..f8e482d616fb 100644 --- a/sound/soc/soc-topology.c +++ b/sound/soc/soc-topology.c @@ -104,13 +104,13 @@ static int soc_tplg_check_elem_count(struct soc_tplg *tplg, size_t elem_size, return 0; } -static inline int soc_tplg_is_eof(struct soc_tplg *tplg) +static inline bool soc_tplg_is_eof(struct soc_tplg *tplg) { const u8 *end = tplg->hdr_pos; if (end >= tplg->fw->data + tplg->fw->size) - return 1; - return 0; + return true; + return false; } static inline unsigned long soc_tplg_get_hdr_offset(struct soc_tplg *tplg) |