diff options
author | Takashi Iwai <tiwai@suse.de> | 2014-02-10 18:23:57 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-02-10 18:23:57 +0100 |
commit | a8dca4604a13469892c77c25638691d7757e7a47 (patch) | |
tree | 1d458f44a6067b04901dab3e20189cbc2019e83d /sound/pci/hda/patch_via.c | |
parent | 998caa4dccbd281640360b1e04ca1965d49f89c2 (diff) | |
download | blackbird-op-linux-a8dca4604a13469892c77c25638691d7757e7a47.tar.gz blackbird-op-linux-a8dca4604a13469892c77c25638691d7757e7a47.zip |
ALSA: hda - Make snd_hda_gen_spec_free() static
The last user of snd_hda_gen_spec_free() is patch_via.c, and we can
rewrite it safely with snd_hda_gen_free(), so that
snd_hda_gen_spec_free() can be a local function in hda_generic.c.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_via.c')
-rw-r--r-- | sound/pci/hda/patch_via.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c index f84195f3ea31..778166259b3e 100644 --- a/sound/pci/hda/patch_via.c +++ b/sound/pci/hda/patch_via.c @@ -465,14 +465,8 @@ static void via_playback_pcm_hook(struct hda_pcm_stream *hinfo, static void via_free(struct hda_codec *codec) { - struct via_spec *spec = codec->spec; - - if (!spec) - return; - vt1708_stop_hp_work(codec); - snd_hda_gen_spec_free(&spec->gen); - kfree(spec); + snd_hda_gen_free(codec); } #ifdef CONFIG_PM |