Lines Matching refs:block
75 struct sst_block *block = NULL; in sst_wake_up_block() local
80 list_for_each_entry(block, &ctx->block_list, node) { in sst_wake_up_block()
81 dev_dbg(ctx->dev, "Block ipc %d, drv_id %d\n", block->msg_id, in sst_wake_up_block()
82 block->drv_id); in sst_wake_up_block()
83 if (block->msg_id == ipc && block->drv_id == drv_id) { in sst_wake_up_block()
85 block->ret_code = result; in sst_wake_up_block()
86 block->data = data; in sst_wake_up_block()
87 block->size = size; in sst_wake_up_block()
88 block->condition = true; in sst_wake_up_block()
103 struct sst_block *block = NULL, *__block; in sst_free_block() local
107 list_for_each_entry_safe(block, __block, &ctx->block_list, node) { in sst_free_block()
108 if (block == freed) { in sst_free_block()