Lines Matching refs:pcm
245 struct snd_pcm *pcm; member
423 epcm->voice = &epcm->emu->voices[substream->pcm->device]; in snd_emu10k1x_pcm_hw_params()
852 struct snd_pcm *pcm; in snd_emu10k1x_pcm() local
860 if ((err = snd_pcm_new(emu->card, "emu10k1x", device, 1, capture, &pcm)) < 0) in snd_emu10k1x_pcm()
863 pcm->private_data = emu; in snd_emu10k1x_pcm()
867 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_emu10k1x_playback_ops); in snd_emu10k1x_pcm()
868 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_emu10k1x_capture_ops); in snd_emu10k1x_pcm()
872 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_emu10k1x_playback_ops); in snd_emu10k1x_pcm()
876 pcm->info_flags = 0; in snd_emu10k1x_pcm()
879 strcpy(pcm->name, "EMU10K1X Front"); in snd_emu10k1x_pcm()
883 strcpy(pcm->name, "EMU10K1X Rear"); in snd_emu10k1x_pcm()
887 strcpy(pcm->name, "EMU10K1X Center/LFE"); in snd_emu10k1x_pcm()
891 emu->pcm = pcm; in snd_emu10k1x_pcm()
893 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, in snd_emu10k1x_pcm()
897 return snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK, map, 2, in snd_emu10k1x_pcm()