]> git.baikalelectronics.ru Git - kernel.git/commit
ASoC: dapm: Add new widgets to the end of the widget list
authorLars-Peter Clausen <lars@metafoo.de>
Fri, 1 May 2015 16:02:42 +0000 (18:02 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 6 May 2015 16:31:02 +0000 (17:31 +0100)
commitfe8c0a7fb255d5decc6cf0552c13db0562b7fdeb
tree18f65f88bc363c4f40fec03db1a566731e51b724
parentb7db4a71973b97a075f9276ec1dc74263a94823a
ASoC: dapm: Add new widgets to the end of the widget list

Currently new widgets are appended to the beginning of the cards widget
list. This has the effect that widgets that are created while iterating
over the widget list in snd_soc_dapm_new_widgets() (like e.g. the
auto-disable widgets) are not covered during that invocation of the
function. If no further invocations of snd_soc_dapm_new_widgets() happen
these widgets will not be fully initialized and e.g. no debugfs entries are
created for them.

By adding new widgets to the end of the widget list we make sure that
widgets that are created in snd_soc_dapm_new_widgets() will still be
handled during the same snd_soc_dapm_new_widgets() invocation and are
always fully initialized.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-dapm.c