From: Takashi Iwai <tiwai@suse.de>
To: Bard liao <yung-chuan.liao@linux.intel.com>
Cc: liam.r.girdwood@linux.intel.com, alsa-devel@alsa-project.org,
broonie@kernel.org, pierre-louis.bossart@linux.intel.com,
bard.liao@intel.com
Subject: Re: [PATCH 1/2] ALSA: hda: fix unregister device twice on ASoC driver
Date: Mon, 29 Apr 2019 09:12:25 +0200 [thread overview]
Message-ID: <s5hr29ljndy.wl-tiwai@suse.de> (raw)
In-Reply-To: <20190427205340.8830-1-yung-chuan.liao@linux.intel.com>
On Sat, 27 Apr 2019 22:53:39 +0200,
Bard liao wrote:
>
> snd_hda_codec_device_new() is used by both legacy HDA and ASoC
> driver. However, we will call snd_hdac_device_unregister() in
> snd_hdac_ext_bus_device_remove() for ASoC device. This patch uses
> the type flag in hdac_device struct to determine is it a ASoC device
> or legacy HDA device and call snd_hdac_device_unregister() in
> snd_hda_codec_dev_free() only if it is a legacy HDA device.
>
> Signed-off-by: Bard liao <yung-chuan.liao@linux.intel.com>
Applied, thanks.
Takashi
> ---
> sound/pci/hda/hda_codec.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
> index 701a69d856f5..b20eb7fc83eb 100644
> --- a/sound/pci/hda/hda_codec.c
> +++ b/sound/pci/hda/hda_codec.c
> @@ -832,7 +832,13 @@ static int snd_hda_codec_dev_free(struct snd_device *device)
> struct hda_codec *codec = device->device_data;
>
> codec->in_freeing = 1;
> - snd_hdac_device_unregister(&codec->core);
> + /*
> + * snd_hda_codec_device_new() is used by legacy HDA and ASoC driver.
> + * We can't unregister ASoC device since it will be unregistered in
> + * snd_hdac_ext_bus_device_remove().
> + */
> + if (codec->core.type == HDA_DEV_LEGACY)
> + snd_hdac_device_unregister(&codec->core);
> codec_display_power(codec, false);
> put_device(hda_codec_dev(codec));
> return 0;
> --
> 2.17.1
>
prev parent reply other threads:[~2019-04-29 7:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-27 20:53 [PATCH 1/2] ALSA: hda: fix unregister device twice on ASoC driver Bard liao
2019-04-27 20:53 ` [PATCH 2/2] ASoC: hdac_hda: overwrite hdev type to HDA_DEV_ASOC Bard liao
2019-04-29 7:12 ` Takashi Iwai
2019-04-29 7:12 ` Takashi Iwai [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=s5hr29ljndy.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=bard.liao@intel.com \
--cc=broonie@kernel.org \
--cc=liam.r.girdwood@linux.intel.com \
--cc=pierre-louis.bossart@linux.intel.com \
--cc=yung-chuan.liao@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox