Re: [PATCH 5/5] dmaengine: owl-dma: fix kernel-doc style for enum

2020-10-08 Thread Vinod Koul
On 08-10-20, 19:34, Manivannan Sadhasivam wrote: > On Wed, Oct 07, 2020 at 02:01:13PM +0530, Vinod Koul wrote: > > Driver doesn't use keyword enum for enum owl_dmadesc_offsets resulting > > in warning: > > > > drivers/dma/owl-dma.c:139: warning: cannot understand function prototype: > > 'enum

Re: [PATCH 5/5] dmaengine: owl-dma: fix kernel-doc style for enum

2020-10-08 Thread Manivannan Sadhasivam
On Wed, Oct 07, 2020 at 02:01:13PM +0530, Vinod Koul wrote: > Driver doesn't use keyword enum for enum owl_dmadesc_offsets resulting > in warning: > > drivers/dma/owl-dma.c:139: warning: cannot understand function prototype: > 'enum owl_dmadesc_offsets ' > > So add the keyword to fix it and also

[PATCH 5/5] dmaengine: owl-dma: fix kernel-doc style for enum

2020-10-07 Thread Vinod Koul
Driver doesn't use keyword enum for enum owl_dmadesc_offsets resulting in warning: drivers/dma/owl-dma.c:139: warning: cannot understand function prototype: 'enum owl_dmadesc_offsets ' So add the keyword to fix it and also add documentation for missing OWL_DMADESC_SIZE Signed-off-by: Vinod Koul