Lines Matching refs:client
21 struct pxa2xx_pcm_client *client = substream->private_data; in pxa2xx_pcm_prepare() local
25 return client->prepare(substream); in pxa2xx_pcm_prepare()
30 struct pxa2xx_pcm_client *client = substream->private_data; in pxa2xx_pcm_open() local
42 client->playback_params : client->capture_params; in pxa2xx_pcm_open()
49 ret = client->startup(substream); in pxa2xx_pcm_open()
62 struct pxa2xx_pcm_client *client = substream->private_data; in pxa2xx_pcm_close() local
66 client->shutdown(substream); in pxa2xx_pcm_close()
85 int pxa2xx_pcm_new(struct snd_card *card, struct pxa2xx_pcm_client *client, in pxa2xx_pcm_new() argument
89 int play = client->playback_params ? 1 : 0; in pxa2xx_pcm_new()
90 int capt = client->capture_params ? 1 : 0; in pxa2xx_pcm_new()
97 pcm->private_data = client; in pxa2xx_pcm_new()