diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-05-26 11:58:15 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-07-01 09:15:37 -0400 |
commit | 48afb3112e6373a292e54d675e986a5da14c0516 (patch) | |
tree | 981a0dd9c009cded9801fa04e4b15b441bf45ef1 /include | |
parent | c15a6ef6ea3ff06df2d532d314f85da48cb067e8 (diff) |
dmaengine: PL08x: remove circular_buffer boolean from channel data
Circular buffers are not handled in this way; we have a separate API
call now to setup circular buffers. So lets not mislead people with
this bool.
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Tested-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/amba/pl08x.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/amba/pl08x.h b/include/linux/amba/pl08x.h index 02549017212a..0f5b34d668b6 100644 --- a/include/linux/amba/pl08x.h +++ b/include/linux/amba/pl08x.h | |||
@@ -51,9 +51,6 @@ enum { | |||
51 | * can be the address of a FIFO register for burst requests for example. | 51 | * can be the address of a FIFO register for burst requests for example. |
52 | * This can be left undefined if the PrimeCell API is used for configuring | 52 | * This can be left undefined if the PrimeCell API is used for configuring |
53 | * this. | 53 | * this. |
54 | * @circular_buffer: whether the buffer passed in is circular and | ||
55 | * shall simply be looped round round (like a record baby round | ||
56 | * round round round) | ||
57 | * @single: the device connected to this channel will request single DMA | 54 | * @single: the device connected to this channel will request single DMA |
58 | * transfers, not bursts. (Bursts are default.) | 55 | * transfers, not bursts. (Bursts are default.) |
59 | * @periph_buses: the device connected to this channel is accessible via | 56 | * @periph_buses: the device connected to this channel is accessible via |
@@ -66,7 +63,6 @@ struct pl08x_channel_data { | |||
66 | u32 muxval; | 63 | u32 muxval; |
67 | u32 cctl; | 64 | u32 cctl; |
68 | dma_addr_t addr; | 65 | dma_addr_t addr; |
69 | bool circular_buffer; | ||
70 | bool single; | 66 | bool single; |
71 | u8 periph_buses; | 67 | u8 periph_buses; |
72 | }; | 68 | }; |