Lines Matching refs:spipe
1531 struct snd_sof_pipeline *spipe; in sof_widget_ready() local
1533 spipe = kzalloc(sizeof(*spipe), GFP_KERNEL); in sof_widget_ready()
1534 if (!spipe) { in sof_widget_ready()
1541 spipe->pipe_widget = swidget; in sof_widget_ready()
1542 swidget->spipe = spipe; in sof_widget_ready()
1543 list_add(&spipe->list, &sdev->pipeline_list); in sof_widget_ready()
1603 struct snd_sof_pipeline *spipe = swidget->spipe; in sof_widget_unload() local
1605 list_del(&spipe->list); in sof_widget_unload()
1606 kfree(spipe); in sof_widget_unload()
1607 swidget->spipe = NULL; in sof_widget_unload()
2093 static int sof_set_widget_pipeline(struct snd_sof_dev *sdev, struct snd_sof_pipeline *spipe, in sof_set_widget_pipeline() argument
2096 struct snd_sof_widget *pipe_widget = spipe->pipe_widget; in sof_set_widget_pipeline()
2112 swidget->spipe = spipe; in sof_set_widget_pipeline()
2126 struct snd_sof_pipeline *spipe; in sof_complete() local
2159 list_for_each_entry(spipe, &sdev->pipeline_list, list) { in sof_complete()
2160 struct snd_sof_widget *pipe_widget = spipe->pipe_widget; in sof_complete()
2170 ret = sof_set_widget_pipeline(sdev, spipe, comp_swidget); in sof_complete()