Lines Matching refs:sroute
1591 struct snd_sof_route *sroute; in sof_route_unload() local
1593 sroute = dobj->private; in sof_route_unload()
1594 if (!sroute) in sof_route_unload()
1598 kfree(sroute->private); in sof_route_unload()
1599 list_del(&sroute->list); in sof_route_unload()
1600 kfree(sroute); in sof_route_unload()
2057 struct snd_sof_route *sroute; in sof_route_load() local
2061 sroute = kzalloc(sizeof(*sroute), GFP_KERNEL); in sof_route_load()
2062 if (!sroute) in sof_route_load()
2065 sroute->scomp = scomp; in sof_route_load()
2106 sroute->route = route; in sof_route_load()
2107 dobj->private = sroute; in sof_route_load()
2108 sroute->src_widget = source_swidget; in sof_route_load()
2109 sroute->sink_widget = sink_swidget; in sof_route_load()
2112 list_add(&sroute->list, &sdev->route_list); in sof_route_load()
2116 kfree(sroute); in sof_route_load()