Lines Matching refs:sroute
2542 struct snd_sof_route *sroute; in sof_route_unload() local
2544 sroute = dobj->private; in sof_route_unload()
2545 if (!sroute) in sof_route_unload()
2549 kfree(sroute->private); in sof_route_unload()
2550 list_del(&sroute->list); in sof_route_unload()
2551 kfree(sroute); in sof_route_unload()
3414 struct snd_sof_route *sroute; in sof_route_load() local
3419 sroute = kzalloc(sizeof(*sroute), GFP_KERNEL); in sof_route_load()
3420 if (!sroute) in sof_route_load()
3423 sroute->scomp = scomp; in sof_route_load()
3427 kfree(sroute); in sof_route_load()
3514 sroute->route = route; in sof_route_load()
3515 dobj->private = sroute; in sof_route_load()
3516 sroute->private = connect; in sof_route_load()
3519 list_add(&sroute->list, &sdev->route_list); in sof_route_load()
3526 kfree(sroute); in sof_route_load()