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/pci/es1938.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/pci/es1938.c')
-rw-r--r-- | sound/pci/es1938.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sound/pci/es1938.c b/sound/pci/es1938.c index c134f48152b0..d05c3d2b330c 100644 --- a/sound/pci/es1938.c +++ b/sound/pci/es1938.c | |||
@@ -1000,11 +1000,6 @@ static snd_pcm_ops_t snd_es1938_capture_ops = { | |||
1000 | .copy = snd_es1938_capture_copy, | 1000 | .copy = snd_es1938_capture_copy, |
1001 | }; | 1001 | }; |
1002 | 1002 | ||
1003 | static void snd_es1938_free_pcm(snd_pcm_t *pcm) | ||
1004 | { | ||
1005 | snd_pcm_lib_preallocate_free_for_all(pcm); | ||
1006 | } | ||
1007 | |||
1008 | static int __devinit snd_es1938_new_pcm(es1938_t *chip, int device) | 1003 | static int __devinit snd_es1938_new_pcm(es1938_t *chip, int device) |
1009 | { | 1004 | { |
1010 | snd_pcm_t *pcm; | 1005 | snd_pcm_t *pcm; |
@@ -1016,7 +1011,6 @@ static int __devinit snd_es1938_new_pcm(es1938_t *chip, int device) | |||
1016 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_es1938_capture_ops); | 1011 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_es1938_capture_ops); |
1017 | 1012 | ||
1018 | pcm->private_data = chip; | 1013 | pcm->private_data = chip; |
1019 | pcm->private_free = snd_es1938_free_pcm; | ||
1020 | pcm->info_flags = 0; | 1014 | pcm->info_flags = 0; |
1021 | strcpy(pcm->name, "ESS Solo-1"); | 1015 | strcpy(pcm->name, "ESS Solo-1"); |
1022 | 1016 | ||