Skip to content

Commit

Permalink
dmaengine: bcm2835: Document struct bcm2835_dmadev
Browse files Browse the repository at this point in the history
Document the BCM2835 DMA driver's device data structure so that upcoming
commits may add further members with proper kerneldoc.

Signed-off-by: Lukas Wunner <[email protected]>
Cc: Martin Sperl <[email protected]>
Cc: Florian Kauer <[email protected]>
  • Loading branch information
l1k committed Jun 27, 2019
1 parent b9194f1 commit c68db02
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions drivers/dma/bcm2835-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@
#define BCM2835_DMA_CHAN_NAME_SIZE 8
#define BCM2835_DMA_BULK_MASK BIT(0)

/**
* struct bcm2835_dmadev - BCM2835 DMA controller
* @ddev: DMA device
* @base: base address of register map
* @dma_parms: DMA parameters (to convey 1 GByte max segment size to clients)
*/
struct bcm2835_dmadev {
struct dma_device ddev;
void __iomem *base;
Expand Down

0 comments on commit c68db02

Please sign in to comment.