Lines Matching refs:sroute
1554 struct snd_sof_route *sroute; in sof_route_unload() local
1556 sroute = dobj->private; in sof_route_unload()
1557 if (!sroute) in sof_route_unload()
1561 kfree(sroute->private); in sof_route_unload()
1562 list_del(&sroute->list); in sof_route_unload()
1563 kfree(sroute); in sof_route_unload()
2020 struct snd_sof_route *sroute; in sof_route_load() local
2024 sroute = kzalloc(sizeof(*sroute), GFP_KERNEL); in sof_route_load()
2025 if (!sroute) in sof_route_load()
2028 sroute->scomp = scomp; in sof_route_load()
2069 sroute->route = route; in sof_route_load()
2070 dobj->private = sroute; in sof_route_load()
2071 sroute->src_widget = source_swidget; in sof_route_load()
2072 sroute->sink_widget = sink_swidget; in sof_route_load()
2075 list_add(&sroute->list, &sdev->route_list); in sof_route_load()
2079 kfree(sroute); in sof_route_load()