diff options
author | Tudor Ambarus <[email protected]> | 2022-10-25 12:03:05 +0300 |
---|---|---|
committer | Vinod Koul <[email protected]> | 2022-11-11 12:15:09 +0530 |
commit | 993b397752f3babb698932f20c1c363c4eca4efc (patch) | |
tree | 83e29ce20b11ab3212ae7eedbdabd6549bd7fe3f | |
parent | 304184f79c7eb50b32915b29f7cacd58455048d2 (diff) |
dmaengine: at_hdmac: Remove unused member of at_dma_chan
The pointer to at_dma engine was never used, remove it.
Signed-off-by: Tudor Ambarus <[email protected]>
Acked-by: Nicolas Ferre <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Vinod Koul <[email protected]>
-rw-r--r-- | drivers/dma/at_hdmac.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c index e39b9b47234a..143d75c18d1e 100644 --- a/drivers/dma/at_hdmac.c +++ b/drivers/dma/at_hdmac.c @@ -253,7 +253,6 @@ enum atc_status { /** * struct at_dma_chan - internal representation of an Atmel HDMAC channel * @dma_chan: common dmaengine channel object members - * @device: parent device * @ch_regs: memory mapped register base * @mask: channel index in a mask * @per_if: peripheral interface @@ -273,7 +272,6 @@ enum atc_status { */ struct at_dma_chan { struct dma_chan dma_chan; - struct at_dma *device; void __iomem *ch_regs; u8 mask; u8 per_if; |