Lines Matching defs:stream
525 struct sdw_stream_data *stream;
528 stream = snd_soc_dai_get_dma_data(dai, substream);
530 if (!stream)
536 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
562 &port_config, 1, stream->sdw_stream);
661 struct sdw_stream_data *stream =
667 sdw_stream_remove_slave(max98373->slave, stream->sdw_stream);
674 struct sdw_stream_data *stream;
679 stream = kzalloc(sizeof(*stream), GFP_KERNEL);
680 if (!stream)
683 stream->sdw_stream = sdw_stream;
685 /* Use tx_mask or rx_mask to configure stream tag and set dma_data */
687 dai->playback_dma_data = stream;
689 dai->capture_dma_data = stream;
697 struct sdw_stream_data *stream;
699 stream = snd_soc_dai_get_dma_data(dai, substream);
701 kfree(stream);