diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-11-16 12:43:35 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-03 06:16:21 -0500 |
commit | c3e6f7d8763fa0400d28c57633eb323515ba05fc (patch) | |
tree | b0803843b710ac74fc1399910445a8ff2cf396a5 /sound/sparc/amd7930.c | |
parent | f31a31b9024f21b2ad8f5a7c30e265a652e2e211 (diff) |
[ALSA] Remove superfluous pcm_free callbacks
Remove superflous pcm_free callbacks.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/sparc/amd7930.c')
-rw-r--r-- | sound/sparc/amd7930.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sound/sparc/amd7930.c b/sound/sparc/amd7930.c index 46d504ba7e03..7d4b6855bac0 100644 --- a/sound/sparc/amd7930.c +++ b/sound/sparc/amd7930.c | |||
@@ -755,14 +755,6 @@ static snd_pcm_ops_t snd_amd7930_capture_ops = { | |||
755 | .pointer = snd_amd7930_capture_pointer, | 755 | .pointer = snd_amd7930_capture_pointer, |
756 | }; | 756 | }; |
757 | 757 | ||
758 | static void snd_amd7930_pcm_free(snd_pcm_t *pcm) | ||
759 | { | ||
760 | amd7930_t *amd = pcm->private_data; | ||
761 | |||
762 | amd->pcm = NULL; | ||
763 | snd_pcm_lib_preallocate_free_for_all(pcm); | ||
764 | } | ||
765 | |||
766 | static int __init snd_amd7930_pcm(amd7930_t *amd) | 758 | static int __init snd_amd7930_pcm(amd7930_t *amd) |
767 | { | 759 | { |
768 | snd_pcm_t *pcm; | 760 | snd_pcm_t *pcm; |
@@ -780,7 +772,6 @@ static int __init snd_amd7930_pcm(amd7930_t *amd) | |||
780 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_amd7930_capture_ops); | 772 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_amd7930_capture_ops); |
781 | 773 | ||
782 | pcm->private_data = amd; | 774 | pcm->private_data = amd; |
783 | pcm->private_free = snd_amd7930_pcm_free; | ||
784 | pcm->info_flags = 0; | 775 | pcm->info_flags = 0; |
785 | strcpy(pcm->name, amd->card->shortname); | 776 | strcpy(pcm->name, amd->card->shortname); |
786 | amd->pcm = pcm; | 777 | amd->pcm = pcm; |