[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CABdmKX0-x53hjkKeSw1oDu2yFTKEXc1z_TFg0EMyWF2aBNbk2w@mail.gmail.com>
Date: Mon, 11 Sep 2023 16:51:20 -0700
From: "T.J. Mercier" <tjmercier@...gle.com>
To: Christian König <christian.koenig@....com>
Cc: Yong Wu <yong.wu@...iatek.com>, Rob Herring <robh+dt@...nel.org>,
Sumit Semwal <sumit.semwal@...aro.org>,
Matthias Brugger <matthias.bgg@...il.com>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@...aro.org>,
Conor Dooley <conor+dt@...nel.org>,
Benjamin Gaignard <benjamin.gaignard@...labora.com>,
Brian Starkey <Brian.Starkey@....com>,
John Stultz <jstultz@...gle.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@...labora.com>,
devicetree@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-media@...r.kernel.org, dri-devel@...ts.freedesktop.org,
linaro-mm-sig@...ts.linaro.org,
linux-arm-kernel@...ts.infradead.org,
linux-mediatek@...ts.infradead.org, jianjiao.zeng@...iatek.com,
kuohong.wang@...iatek.com
Subject: Re: [PATCH 1/9] dma-buf: heaps: Deduplicate docs and adopt common format
On Mon, Sep 11, 2023 at 2:36 AM Christian König
<christian.koenig@....com> wrote:
>
> m 11.09.23 um 04:30 schrieb Yong Wu:
> > From: "T.J. Mercier" <tjmercier@...gle.com>
> >
> > The docs for dma_heap_get_name were incorrect, and since they were
> > duplicated in the implementation file they were wrong there too.
> >
> > The docs formatting was inconsistent so I tried to make it more
> > consistent across functions since I'm already in here doing cleanup.
> >
> > Remove multiple unused includes.
> >
> > Signed-off-by: T.J. Mercier <tjmercier@...gle.com>
> > Signed-off-by: Yong Wu <yong.wu@...iatek.com>
> > [Yong: Just add a comment for "priv" to mute build warning]
> > ---
> > drivers/dma-buf/dma-heap.c | 29 +++++++----------------------
> > include/linux/dma-heap.h | 11 +++++------
> > 2 files changed, 12 insertions(+), 28 deletions(-)
> >
> > diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c
> > index 84ae708fafe7..51030f6c9d6e 100644
> > --- a/drivers/dma-buf/dma-heap.c
> > +++ b/drivers/dma-buf/dma-heap.c
> > @@ -7,17 +7,15 @@
> > */
> >
> > #include <linux/cdev.h>
> > -#include <linux/debugfs.h>
> > #include <linux/device.h>
> > #include <linux/dma-buf.h>
> > +#include <linux/dma-heap.h>
> > #include <linux/err.h>
> > -#include <linux/xarray.h>
> > #include <linux/list.h>
> > -#include <linux/slab.h>
> > #include <linux/nospec.h>
> > -#include <linux/uaccess.h>
> > #include <linux/syscalls.h>
> > -#include <linux/dma-heap.h>
> > +#include <linux/uaccess.h>
> > +#include <linux/xarray.h>
> > #include <uapi/linux/dma-heap.h>
> >
> > #define DEVNAME "dma_heap"
> > @@ -28,9 +26,10 @@
> > * struct dma_heap - represents a dmabuf heap in the system
> > * @name: used for debugging/device-node name
> > * @ops: ops struct for this heap
> > - * @heap_devt heap device node
> > - * @list list head connecting to list of heaps
> > - * @heap_cdev heap char device
> > + * @priv: private data for this heap
> > + * @heap_devt: heap device node
> > + * @list: list head connecting to list of heaps
> > + * @heap_cdev: heap char device
> > *
> > * Represents a heap of memory from which buffers can be made.
> > */
> > @@ -192,25 +191,11 @@ static const struct file_operations dma_heap_fops = {
> > #endif
> > };
> >
> > -/**
> > - * dma_heap_get_drvdata() - get per-subdriver data for the heap
> > - * @heap: DMA-Heap to retrieve private data for
> > - *
> > - * Returns:
> > - * The per-subdriver data for the heap.
> > - */
>
> Kernel documentation is usually kept on the implementation and not the
> definition.
>
> So I strongly suggest to remove the documentation from the header
> instead and if there is any additional information in there add it here.
>
> Regards,
> Christian.
>
Ok thanks for looking. I'll move all the function docs over to the
implementation.
Powered by blists - more mailing lists