ASoC: hdac_hda: use devm_snd_soc_register_component()

Now we have devm_snd_soc_register_component().
Let's use it instead of snd_soc_register_component().

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
(cherry picked from commit 10ccaa39d7)
This commit is contained in:
Kuninori Morimoto 2018-09-07 01:01:19 +00:00 committed by Pierre-Louis Bossart
parent 12354e34e5
commit 7a81df9fa7

View File

@ -448,7 +448,7 @@ static int hdac_hda_dev_probe(struct hdac_device *hdev)
return -ENOMEM;
/* ASoC specific initialization */
ret = snd_soc_register_component(&hdev->dev,
ret = devm_snd_soc_register_component(&hdev->dev,
&hdac_hda_codec, hdac_hda_dais,
ARRAY_SIZE(hdac_hda_dais));
if (ret < 0) {
@ -464,7 +464,6 @@ static int hdac_hda_dev_probe(struct hdac_device *hdev)
static int hdac_hda_dev_remove(struct hdac_device *hdev)
{
snd_soc_unregister_component(&hdev->dev);
return 0;
}