summaryrefslogtreecommitdiffstats
path: root/sound/firewire
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2017-01-25 16:11:17 -0500
committerTakashi Iwai <tiwai@suse.de>2017-01-25 16:11:17 -0500
commite1a063f43a5e0435ecf8a2b6d42e10e20e8caf61 (patch)
tree7329fb15e57917a503c859f7266fcd034728bd54 /sound/firewire
parent9eb5d0e635ebe2f227d591e531d48c6f01c0dd78 (diff)
parent0369d6315bc2bc56da2a2b15c8074b889096a47e (diff)
Merge branch 'topic/intel-lpe-audio' into for-next
Diffstat (limited to 'sound/firewire')
-rw-r--r--sound/firewire/amdtp-stream.c2
-rw-r--r--sound/firewire/amdtp-stream.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/sound/firewire/amdtp-stream.c b/sound/firewire/amdtp-stream.c
index 8ce93cdc4b0d..00060c4a9deb 100644
--- a/sound/firewire/amdtp-stream.c
+++ b/sound/firewire/amdtp-stream.c
@@ -69,7 +69,7 @@ static void pcm_period_tasklet(unsigned long data);
69 * @protocol_size: the size to allocate newly for protocol 69 * @protocol_size: the size to allocate newly for protocol
70 */ 70 */
71int amdtp_stream_init(struct amdtp_stream *s, struct fw_unit *unit, 71int amdtp_stream_init(struct amdtp_stream *s, struct fw_unit *unit,
72 enum amdtp_stream_direction dir, int flags, 72 enum amdtp_stream_direction dir, enum cip_flags flags,
73 unsigned int fmt, 73 unsigned int fmt,
74 amdtp_stream_process_data_blocks_t process_data_blocks, 74 amdtp_stream_process_data_blocks_t process_data_blocks,
75 unsigned int protocol_size) 75 unsigned int protocol_size)
diff --git a/sound/firewire/amdtp-stream.h b/sound/firewire/amdtp-stream.h
index 7be21429cd12..c1bc7fad056e 100644
--- a/sound/firewire/amdtp-stream.h
+++ b/sound/firewire/amdtp-stream.h
@@ -93,7 +93,7 @@ typedef unsigned int (*amdtp_stream_process_data_blocks_t)(
93 unsigned int *syt); 93 unsigned int *syt);
94struct amdtp_stream { 94struct amdtp_stream {
95 struct fw_unit *unit; 95 struct fw_unit *unit;
96 int flags; 96 enum cip_flags flags;
97 enum amdtp_stream_direction direction; 97 enum amdtp_stream_direction direction;
98 struct mutex mutex; 98 struct mutex mutex;
99 99
@@ -137,7 +137,7 @@ struct amdtp_stream {
137}; 137};
138 138
139int amdtp_stream_init(struct amdtp_stream *s, struct fw_unit *unit, 139int amdtp_stream_init(struct amdtp_stream *s, struct fw_unit *unit,
140 enum amdtp_stream_direction dir, int flags, 140 enum amdtp_stream_direction dir, enum cip_flags flags,
141 unsigned int fmt, 141 unsigned int fmt,
142 amdtp_stream_process_data_blocks_t process_data_blocks, 142 amdtp_stream_process_data_blocks_t process_data_blocks,
143 unsigned int protocol_size); 143 unsigned int protocol_size);