Commit e878e8c5 authored by Takashi Iwai's avatar Takashi Iwai

Merge branch 'topic/firewire' into for-next

parents 481f17c4 73246fc4
This diff is collapsed.
...@@ -147,7 +147,6 @@ struct amdtp_stream { ...@@ -147,7 +147,6 @@ struct amdtp_stream {
// To generate constant hardware IRQ. // To generate constant hardware IRQ.
unsigned int event_count; unsigned int event_count;
unsigned int events_per_period;
} rx; } rx;
} ctx_data; } ctx_data;
...@@ -172,6 +171,7 @@ struct amdtp_stream { ...@@ -172,6 +171,7 @@ struct amdtp_stream {
bool callbacked; bool callbacked;
wait_queue_head_t callback_wait; wait_queue_head_t callback_wait;
u32 start_cycle; u32 start_cycle;
unsigned int next_cycle;
/* For backends to process data blocks. */ /* For backends to process data blocks. */
void *protocol; void *protocol;
...@@ -288,9 +288,11 @@ struct amdtp_domain { ...@@ -288,9 +288,11 @@ struct amdtp_domain {
struct amdtp_stream *irq_target; struct amdtp_stream *irq_target;
struct seq_desc *seq_descs; struct {
unsigned int seq_size; struct seq_desc *descs;
unsigned int seq_tail; unsigned int size;
unsigned int tail;
} seq;
unsigned int data_block_state; unsigned int data_block_state;
unsigned int syt_offset_state; unsigned int syt_offset_state;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment