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()
3423 struct snd_sof_route *sroute; in sof_route_load() local
3428 sroute = kzalloc(sizeof(*sroute), GFP_KERNEL); in sof_route_load()
3429 if (!sroute) in sof_route_load()
3432 sroute->scomp = scomp; in sof_route_load()
3436 kfree(sroute); in sof_route_load()
3523 sroute->route = route; in sof_route_load()
3524 dobj->private = sroute; in sof_route_load()
3525 sroute->private = connect; in sof_route_load()
3528 list_add(&sroute->list, &sdev->route_list); in sof_route_load()
3535 kfree(sroute); in sof_route_load()