Lines Matching refs:pcm
216 struct snd_pcm *pcm; member
1020 struct snd_pcm *pcm; in snd_es1938_new_pcm() local
1023 if ((err = snd_pcm_new(chip->card, "es-1938-1946", device, 2, 1, &pcm)) < 0) in snd_es1938_new_pcm()
1025 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_es1938_playback_ops); in snd_es1938_new_pcm()
1026 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_es1938_capture_ops); in snd_es1938_new_pcm()
1028 pcm->private_data = chip; in snd_es1938_new_pcm()
1029 pcm->info_flags = 0; in snd_es1938_new_pcm()
1030 strcpy(pcm->name, "ESS Solo-1"); in snd_es1938_new_pcm()
1032 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, in snd_es1938_new_pcm()
1035 chip->pcm = pcm; in snd_es1938_new_pcm()
1461 snd_pcm_suspend_all(chip->pcm); in es1938_suspend()