Lines Matching refs:pcm
225 struct snd_pcm *pcm; member
632 if (sonic->pcm) { in snd_sonicvibes_interrupt()
884 struct snd_pcm *pcm; in snd_sonicvibes_pcm() local
887 if ((err = snd_pcm_new(sonic->card, "s3_86c617", device, 1, 1, &pcm)) < 0) in snd_sonicvibes_pcm()
889 if (snd_BUG_ON(!pcm)) in snd_sonicvibes_pcm()
892 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_sonicvibes_playback_ops); in snd_sonicvibes_pcm()
893 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_sonicvibes_capture_ops); in snd_sonicvibes_pcm()
895 pcm->private_data = sonic; in snd_sonicvibes_pcm()
896 pcm->info_flags = 0; in snd_sonicvibes_pcm()
897 strcpy(pcm->name, "S3 SonicVibes"); in snd_sonicvibes_pcm()
898 sonic->pcm = pcm; in snd_sonicvibes_pcm()
900 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, in snd_sonicvibes_pcm()