File tree Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 15
15
#include "ipc4-topology.h"
16
16
#include "ipc4-fw-reg.h"
17
17
18
+ /**
19
+ * struct sof_ipc4_timestamp_info - IPC4 timestamp info
20
+ * @host_copier: the host copier of the pcm stream
21
+ * @dai_copier: the dai copier of the pcm stream
22
+ * @stream_start_offset: reported by fw in memory window
23
+ * @llp_offset: llp offset in memory window
24
+ */
25
+ struct sof_ipc4_timestamp_info {
26
+ struct sof_ipc4_copier * host_copier ;
27
+ struct sof_ipc4_copier * dai_copier ;
28
+ u64 stream_start_offset ;
29
+ u32 llp_offset ;
30
+ };
31
+
18
32
static int sof_ipc4_set_multi_pipeline_state (struct snd_sof_dev * sdev , u32 state ,
19
33
struct ipc4_pipeline_set_state_data * trigger_list )
20
34
{
Original file line number Diff line number Diff line change @@ -92,20 +92,6 @@ struct sof_ipc4_fw_data {
92
92
struct mutex pipeline_state_mutex ; /* protect pipeline triggers, ref counts and states */
93
93
};
94
94
95
- /**
96
- * struct sof_ipc4_timestamp_info - IPC4 timestamp info
97
- * @host_copier: the host copier of the pcm stream
98
- * @dai_copier: the dai copier of the pcm stream
99
- * @stream_start_offset: reported by fw in memory window
100
- * @llp_offset: llp offset in memory window
101
- */
102
- struct sof_ipc4_timestamp_info {
103
- struct sof_ipc4_copier * host_copier ;
104
- struct sof_ipc4_copier * dai_copier ;
105
- u64 stream_start_offset ;
106
- u32 llp_offset ;
107
- };
108
-
109
95
extern const struct sof_ipc_fw_loader_ops ipc4_loader_ops ;
110
96
extern const struct sof_ipc_tplg_ops ipc4_tplg_ops ;
111
97
extern const struct sof_ipc_tplg_control_ops tplg_ipc4_control_ops ;
You can’t perform that action at this time.
0 commit comments