Commit 70ca35fb authored by Wu Fengguang's avatar Wu Fengguang Committed by Takashi Iwai

ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi

Remove pcm callbacks open/close in favor of the prepare/cleanup.
Signed-off-by: default avatarWu Fengguang <fengguang.wu@intel.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 7bedb011
...@@ -543,16 +543,9 @@ static void intel_hdmi_unsol_event(struct hda_codec *codec, unsigned int res) ...@@ -543,16 +543,9 @@ static void intel_hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
* Callbacks * Callbacks
*/ */
static int intel_hdmi_playback_pcm_open(struct hda_pcm_stream *hinfo, static int intel_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
struct hda_codec *codec, struct hda_codec *codec,
struct snd_pcm_substream *substream) struct snd_pcm_substream *substream)
{
return 0;
}
static int intel_hdmi_playback_pcm_close(struct hda_pcm_stream *hinfo,
struct hda_codec *codec,
struct snd_pcm_substream *substream)
{ {
struct intel_hdmi_spec *spec = codec->spec; struct intel_hdmi_spec *spec = codec->spec;
...@@ -582,9 +575,8 @@ static struct hda_pcm_stream intel_hdmi_pcm_playback = { ...@@ -582,9 +575,8 @@ static struct hda_pcm_stream intel_hdmi_pcm_playback = {
.channels_min = 2, .channels_min = 2,
.channels_max = 8, .channels_max = 8,
.ops = { .ops = {
.open = intel_hdmi_playback_pcm_open, .prepare = intel_hdmi_playback_pcm_prepare,
.close = intel_hdmi_playback_pcm_close, .cleanup = intel_hdmi_playback_pcm_cleanup,
.prepare = intel_hdmi_playback_pcm_prepare
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment