ASoC: smd845: remove auto rebinding

Remove auto rebinding support, as component framework can deadlock
in few usecases if we are trying to add new/remove component within
a bind/unbind callbacks.

Card rebinding is ASoC core feature so all the previous component
framework stuff in q6dsp remains removed.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Srinivas Kandagatla 2018-08-02 16:03:37 +01:00 committed by Mark Brown
parent 1eb576881f
commit 62121debfb
No known key found for this signature in database
GPG key ID: 24D68B725D5487D0

View file

@ -226,7 +226,6 @@ static int sdm845_snd_platform_probe(struct platform_device *pdev)
return -ENOMEM;
card->dev = dev;
card->auto_bind = true;
dev_set_drvdata(dev, card);
ret = qcom_snd_parse_of(card);
if (ret) {
@ -258,7 +257,6 @@ static int sdm845_snd_platform_remove(struct platform_device *pdev)
struct snd_soc_card *card = dev_get_drvdata(&pdev->dev);
struct sdm845_snd_data *data = snd_soc_card_get_drvdata(card);
card->auto_bind = false;
snd_soc_unregister_card(card);
kfree(card->dai_link);
kfree(data);