dmaengine.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/17] Rid W=1 warnings in DMA
@ 2020-07-14 11:15 Lee Jones
  2020-07-14 11:15 ` [PATCH 01/17] dma: mediatek: mtk-hsdma: Fix formatting in 'struct mtk_hsdma_pdesc' doc block Lee Jones
                   ` (17 more replies)
  0 siblings, 18 replies; 22+ messages in thread
From: Lee Jones @ 2020-07-14 11:15 UTC (permalink / raw)
  To: dan.j.williams, vkoul
  Cc: linux-arm-kernel, linux-kernel, dmaengine, Lee Jones

This set is part of a larger effort attempting to clean-up W=1
kernel builds, which are currently overwhelmingly riddled with
niggly little warnings.

After these patches are applied, the build system no longer
complains about any W=0 nor W=1 level warnings in drivers/dma.

Hurrah!

Lee Jones (17):
  dma: mediatek: mtk-hsdma: Fix formatting in 'struct mtk_hsdma_pdesc'
    doc block
  dma: of-dma: Fix misspellings/formatting issues in some function
    headers
  dma: ep93xx_dma: Provide some missing struct attribute documentation
  dma: mmp_pdma: Demote obvious misuse of kerneldoc to standard comment
    blocks
  dma: pl330: Demote obvious misuse of kerneldoc to standard comment
    block
  dma: ste_dma40: Supply 2 missing struct attribute descriptions
  dma: altera-msgdma: Fix struct documentation blocks
  dma: at_hdmac: Repair parameter misspelling and demote non-kerneldoc
    headers
  dma: sun4i-dma: Demote obvious misuse of kerneldoc to standard comment
    blocks
  dma: fsl-qdma: Fix 'struct fsl_qdma_format' formatting issue
  dma: imx-sdma: Correct formatting issue and provide 2 new descriptions
  dma: iop-adma: Function parameter documentation must adhere to correct
    formatting
  dma: nbpfaxi: Provide some missing attribute docs and split out slave
    info
  dma: xgene-dma: Provide descriptions for 'dev' and 'clk' in device's
    ddata
  dma: mv_xor_v2: Supply some missing 'struct mv_xor_v2_device'
    attribute docs
  dma: ioat: init: Correct misspelling of function parameter 'c' for
    channel
  dma: ioat: dma: Fix some parameter misspelling and provide description
    for phys_complete

 drivers/dma/altera-msgdma.c      |  6 ++++--
 drivers/dma/at_hdmac.c           |  6 +++---
 drivers/dma/ep93xx_dma.c         |  2 ++
 drivers/dma/fsl-qdma.c           |  2 +-
 drivers/dma/imx-sdma.c           |  4 +++-
 drivers/dma/ioat/dma.c           |  7 ++++---
 drivers/dma/ioat/init.c          |  2 +-
 drivers/dma/iop-adma.c           |  3 +--
 drivers/dma/mediatek/mtk-hsdma.c |  8 ++++----
 drivers/dma/mmp_pdma.c           |  6 +++---
 drivers/dma/mv_xor_v2.c          |  6 +++++-
 drivers/dma/nbpfaxi.c            | 13 ++++++++++---
 drivers/dma/of-dma.c             |  8 ++++----
 drivers/dma/pl330.c              |  2 +-
 drivers/dma/ste_dma40.c          |  2 ++
 drivers/dma/sun4i-dma.c          | 12 ++++++------
 drivers/dma/xgene-dma.c          |  2 ++
 17 files changed, 56 insertions(+), 35 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2020-07-16  7:12 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-14 11:15 [PATCH 00/17] Rid W=1 warnings in DMA Lee Jones
2020-07-14 11:15 ` [PATCH 01/17] dma: mediatek: mtk-hsdma: Fix formatting in 'struct mtk_hsdma_pdesc' doc block Lee Jones
2020-07-14 11:15 ` [PATCH 02/17] dma: of-dma: Fix misspellings/formatting issues in some function headers Lee Jones
2020-07-14 11:15 ` [PATCH 03/17] dma: ep93xx_dma: Provide some missing struct attribute documentation Lee Jones
2020-07-14 11:15 ` [PATCH 04/17] dma: mmp_pdma: Demote obvious misuse of kerneldoc to standard comment blocks Lee Jones
2020-07-14 11:15 ` [PATCH 05/17] dma: pl330: Demote obvious misuse of kerneldoc to standard comment block Lee Jones
2020-07-14 11:15 ` [PATCH 06/17] dma: ste_dma40: Supply 2 missing struct attribute descriptions Lee Jones
2020-07-14 11:15 ` [PATCH 07/17] dma: altera-msgdma: Fix struct documentation blocks Lee Jones
2020-07-16  7:04   ` Stefan Roese
2020-07-14 11:15 ` [PATCH 08/17] dma: at_hdmac: Repair parameter misspelling and demote non-kerneldoc headers Lee Jones
2020-07-14 11:15 ` [PATCH 09/17] dma: sun4i-dma: Demote obvious misuse of kerneldoc to standard comment blocks Lee Jones
2020-07-15  2:54   ` Chen-Yu Tsai
2020-07-14 11:15 ` [PATCH 10/17] dma: fsl-qdma: Fix 'struct fsl_qdma_format' formatting issue Lee Jones
2020-07-14 11:15 ` [PATCH 11/17] dma: imx-sdma: Correct formatting issue and provide 2 new descriptions Lee Jones
2020-07-14 11:15 ` [PATCH 12/17] dma: iop-adma: Function parameter documentation must adhere to correct formatting Lee Jones
2020-07-14 11:15 ` [PATCH 13/17] dma: nbpfaxi: Provide some missing attribute docs and split out slave info Lee Jones
2020-07-14 11:15 ` [PATCH 14/17] dma: xgene-dma: Provide descriptions for 'dev' and 'clk' in device's ddata Lee Jones
2020-07-14 11:15 ` [PATCH 15/17] dma: mv_xor_v2: Supply some missing 'struct mv_xor_v2_device' attribute docs Lee Jones
2020-07-14 11:15 ` [PATCH 16/17] dma: ioat: init: Correct misspelling of function parameter 'c' for channel Lee Jones
2020-07-14 11:15 ` [PATCH 17/17] dma: ioat: dma: Fix some parameter misspelling and provide description for phys_complete Lee Jones
2020-07-15 15:29 ` [PATCH 00/17] Rid W=1 warnings in DMA Vinod Koul
2020-07-15 15:37   ` Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).