[Sound-open-firmware] [PATCH] ipc: remove dmac id and dmac chan members from host and dai ipc comp def
The new dma_get() API does not use the dmac id and dmac chan info from topology anymore. So remove these members from the host/dai ipc comp def.
Signed-off-by: Ranjani Sridharan ranjani.sridharan@linux.intel.com --- src/include/uapi/ipc.h | 4 ---- 1 file changed, 4 deletions(-)
diff --git a/src/include/uapi/ipc.h b/src/include/uapi/ipc.h index 88de113..8895ff3 100644 --- a/src/include/uapi/ipc.h +++ b/src/include/uapi/ipc.h @@ -657,8 +657,6 @@ struct sof_ipc_comp_host { struct sof_ipc_comp_config config; enum sof_ipc_stream_direction direction; uint32_t no_irq; /* don't send periodic IRQ to host/DSP */ - uint32_t dmac_id; - uint32_t dmac_chan; uint32_t dmac_config; /* DMA engine specific */ } __attribute__((packed));
@@ -669,8 +667,6 @@ struct sof_ipc_comp_dai { enum sof_ipc_stream_direction direction; uint32_t index; enum sof_ipc_dai_type type; - uint32_t dmac_id; - uint32_t dmac_chan; uint32_t dmac_config; /* DMA engine specific */ } __attribute__((packed));
participants (1)
-
Ranjani Sridharan