diff options
author | Takashi Iwai <tiwai@suse.de> | 2013-01-22 15:24:30 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-01-22 15:25:25 +0100 |
commit | dc870f38e9faf7dd89355aae2252126688a1a372 (patch) | |
tree | df231e38831d3f38ddeba4148934a7b0c047614a /sound/pci/hda/hda_codec.c | |
parent | a836dbf685fa58c7db6cd56ad4559b2e6c02c8d9 (diff) | |
download | op-kernel-dev-dc870f38e9faf7dd89355aae2252126688a1a372.zip op-kernel-dev-dc870f38e9faf7dd89355aae2252126688a1a372.tar.gz |
ALSA: hda - Combine snd_hda_codec_flush_*_cache() to a single function
Since both snd_hda_codec_flush_amp_cache() and
snd_hda_codec_flush_cmd_cache() are called usually at the same time,
we can simply combine them to a single function,
snd_hda_codec_flush_cache().
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_codec.c')
-rw-r--r-- | sound/pci/hda/hda_codec.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index e6cdad7..77ddd34 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -3637,6 +3637,17 @@ void snd_hda_sequence_write_cache(struct hda_codec *codec, } EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache); +/** + * snd_hda_codec_flush_cache - Execute all pending (cached) amps / verbs + * @codec: HD-audio codec + */ +void snd_hda_codec_flush_cache(struct hda_codec *codec) +{ + snd_hda_codec_resume_amp(codec); + snd_hda_codec_resume_cache(codec); +} +EXPORT_SYMBOL_HDA(snd_hda_codec_flush_cache); + void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg, unsigned int power_state, bool eapd_workaround) |