diff options
author | Mark Brown <broonie@kernel.org> | 2020-07-08 17:50:36 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-07-08 17:50:36 +0200 |
commit | 76c49909a69259c0f1fee4f88f8c326fc5efe0dd (patch) | |
tree | 05802b1a67f2a75a29d4aa049bc78555b9c4d118 /include/sound | |
parent | Merge series "ASoC: qdsp6: add gapless compressed audio support" from Sriniva... (diff) | |
parent | ASoC: topology: add more logs when topology load fails. (diff) | |
download | linux-76c49909a69259c0f1fee4f88f8c326fc5efe0dd.tar.xz linux-76c49909a69259c0f1fee4f88f8c326fc5efe0dd.zip |
Merge series "ASoC: topology: fix error handling flow" from Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>:
While experimenting and introducing errors in Baytrail topology files
until I got them right, I encountered multiple kernel oopses and
memory leaks. This is a first batch to harden the code, but we should
probably think of a tool to fuzz the topology...
Pierre-Louis Bossart (5):
ASoC: topology: fix kernel oops on route addition error
ASoC: topology: fix tlvs in error handling for widget_dmixer
ASoC: topology: use break on errors, not continue
ASoC: topology: factor kfree(se) in error handling
ASoC: topology: add more logs when topology load fails.
sound/soc/soc-topology.c | 97 ++++++++++++++++++++++++----------------
1 file changed, 58 insertions(+), 39 deletions(-)
base-commit: a5911ac5790acaf98c929b826b3f7b4a438f9759
--
2.25.1
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/soc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index 6791b7570a67..59235e553630 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -426,6 +426,8 @@ int devm_snd_soc_register_component(struct device *dev, const struct snd_soc_component_driver *component_driver, struct snd_soc_dai_driver *dai_drv, int num_dai); void snd_soc_unregister_component(struct device *dev); +void snd_soc_unregister_component_by_driver(struct device *dev, + const struct snd_soc_component_driver *component_driver); struct snd_soc_component *snd_soc_lookup_component_nolocked(struct device *dev, const char *driver_name); struct snd_soc_component *snd_soc_lookup_component(struct device *dev, |