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/azt3328.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/azt3328.c')
-rw-r--r-- | sound/pci/azt3328.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sound/pci/azt3328.c b/sound/pci/azt3328.c index ab737d6df41d..96d1ba0174f8 100644 --- a/sound/pci/azt3328.c +++ b/sound/pci/azt3328.c | |||
@@ -1365,14 +1365,6 @@ static snd_pcm_ops_t snd_azf3328_capture_ops = { | |||
1365 | .pointer = snd_azf3328_capture_pointer | 1365 | .pointer = snd_azf3328_capture_pointer |
1366 | }; | 1366 | }; |
1367 | 1367 | ||
1368 | static void | ||
1369 | snd_azf3328_pcm_free(snd_pcm_t *pcm) | ||
1370 | { | ||
1371 | azf3328_t *chip = pcm->private_data; | ||
1372 | chip->pcm = NULL; | ||
1373 | snd_pcm_lib_preallocate_free_for_all(pcm); | ||
1374 | } | ||
1375 | |||
1376 | static int __devinit | 1368 | static int __devinit |
1377 | snd_azf3328_pcm(azf3328_t *chip, int device) | 1369 | snd_azf3328_pcm(azf3328_t *chip, int device) |
1378 | { | 1370 | { |
@@ -1386,7 +1378,6 @@ snd_azf3328_pcm(azf3328_t *chip, int device) | |||
1386 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_azf3328_capture_ops); | 1378 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_azf3328_capture_ops); |
1387 | 1379 | ||
1388 | pcm->private_data = chip; | 1380 | pcm->private_data = chip; |
1389 | pcm->private_free = snd_azf3328_pcm_free; | ||
1390 | pcm->info_flags = 0; | 1381 | pcm->info_flags = 0; |
1391 | strcpy(pcm->name, chip->card->shortname); | 1382 | strcpy(pcm->name, chip->card->shortname); |
1392 | chip->pcm = pcm; | 1383 | chip->pcm = pcm; |