diff options
author | Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> | 2023-01-28 00:11:06 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-01-30 16:56:07 +0000 |
commit | 70a7cd09a6368e0c9d351185a8fbfb3bae5a74f3 (patch) | |
tree | 631ca772734ae85020bb3d34161b7c3300cf544a /sound/soc/soc-topology.c | |
parent | 2abfd4bd7b0700df4996ae2b60a12f22a0ef633d (diff) | |
download | linux-70a7cd09a6368e0c9d351185a8fbfb3bae5a74f3.tar.gz linux-70a7cd09a6368e0c9d351185a8fbfb3bae5a74f3.tar.bz2 linux-70a7cd09a6368e0c9d351185a8fbfb3bae5a74f3.zip |
ASoC: topology: Remove unnecessary forward declarations
There is no need to forward declare functions if their use is after
their definition.
Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Link: https://lore.kernel.org/r/20230127231111.937721-7-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 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/soc/soc-topology.c b/sound/soc/soc-topology.c index a952f7eaa646..766de161aa4a 100644 --- a/sound/soc/soc-topology.c +++ b/sound/soc/soc-topology.c @@ -76,9 +76,6 @@ struct soc_tplg { struct snd_soc_tplg_ops *ops; }; -static int soc_tplg_process_headers(struct soc_tplg *tplg); -static int soc_tplg_complete(struct soc_tplg *tplg); - /* check we dont overflow the data for this control chunk */ static int soc_tplg_check_elem_count(struct soc_tplg *tplg, size_t elem_size, unsigned int count, size_t bytes, const char *elem_type) |