We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7abb55f + c45746e commit 5a4ba0aCopy full SHA for 5a4ba0a
1 file changed
src/ipc/byt-ipc.c
@@ -215,6 +215,10 @@ int platform_ipc_init(struct ipc *ipc)
215
sizeof(struct intel_ipc_data));
216
ipc_set_drvdata(_ipc, iipc);
217
218
+ /* schedule */
219
+ schedule_task_init(&_ipc->ipc_task, ipc_process_task, _ipc);
220
+ schedule_task_config(&_ipc->ipc_task, 0, 0);
221
+
222
#ifdef CONFIG_HOST_PTABLE
223
/* allocate page table buffer */
224
iipc->page_table = rzalloc(RZONE_SYS, SOF_MEM_CAPS_RAM,
0 commit comments