diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-01-04 16:03:48 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-01-04 16:03:48 +0000 |
commit | 78c388aed2b7184182c08428db1de6c872d815f5 (patch) | |
tree | 4b2003b1b4ceb241a17faa995da8dd1004bb8e45 /drivers/sbus/audio/cs4231.h | |
parent | eb7a5bf93aaa4be1d7c6181100ab7639e74d67f7 (diff) |
Merge with Linux 2.1.131 and more MIPS goodies.
(Did I mention that CVS is buggy ...)
Diffstat (limited to 'drivers/sbus/audio/cs4231.h')
-rw-r--r-- | drivers/sbus/audio/cs4231.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/sbus/audio/cs4231.h b/drivers/sbus/audio/cs4231.h index 569950062..31dc849c0 100644 --- a/drivers/sbus/audio/cs4231.h +++ b/drivers/sbus/audio/cs4231.h @@ -48,11 +48,14 @@ struct cs4231_chip { /* Current buffer that the driver is playing. */ volatile __u8 * output_ptr; volatile unsigned long output_size; - volatile __u32 * output_dma_handle, output_next_dma_handle; + volatile __u32 * output_dma_handle, * output_next_dma_handle; + volatile unsigned long output_dma_size, output_next_dma_size; /* Current record buffer. */ volatile __u8 * input_ptr; volatile unsigned long input_size; + volatile __u32 * input_dma_handle, * input_next_dma_handle; + volatile unsigned long input_dma_size, input_next_dma_size; /* Number of buffers in the pipe. */ volatile unsigned long playing_count; |