2023-07-06 15:13:38

by Marco Pagani

[permalink] [raw]
Subject: [RFC PATCH 0/2] fpga: fix kernel-doc warnings and align descriptions for the core components

This patch set fixes all kernel-doc warnings reported by the kernel-doc
script for the core components of the subsystem and aligns descriptions
with current implementations

Marco Pagani (2):
fpga: region: fix kernel-doc
fpga: bridge: fix kernel-doc

drivers/fpga/fpga-bridge.c | 23 ++++++++++++-----------
drivers/fpga/fpga-region.c | 14 ++++++++------
2 files changed, 20 insertions(+), 17 deletions(-)


base-commit: 45a3e24f65e90a047bef86f927ebdc4c710edaa1
--
2.41.0



2023-07-06 15:15:41

by Marco Pagani

[permalink] [raw]
Subject: [RFC PATCH 1/2] fpga: region: fix kernel-doc

- Fix the following warnings issued by the kernel-doc script:

drivers/fpga/fpga-region.c:46: warning: No description found for return value of 'fpga_region_get'
drivers/fpga/fpga-region.c:97: warning: No description found for return value of 'fpga_region_program_fpga'
drivers/fpga/fpga-region.c:295: warning: No description found for return value of 'fpga_region_init'

- Remove the "and registers a reconfig notifier" part from the description
of fpga_region_init() since it does not register an of_overlay notifier
anymore.

- Remove the outdated "if @np is not an FPGA Region" case from the return
description of fpga_region_get() and replace it with the case when
try_module_get() fails.

Signed-off-by: Marco Pagani <[email protected]>
---
drivers/fpga/fpga-region.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/drivers/fpga/fpga-region.c b/drivers/fpga/fpga-region.c
index ccf6fdab1360..c9d065a6961b 100644
--- a/drivers/fpga/fpga-region.c
+++ b/drivers/fpga/fpga-region.c
@@ -38,9 +38,10 @@ EXPORT_SYMBOL_GPL(fpga_region_class_find);
*
* Caller should call fpga_region_put() when done with region.
*
- * Return fpga_region struct if successful.
- * Return -EBUSY if someone already has a reference to the region.
- * Return -ENODEV if @np is not an FPGA Region.
+ * Return:
+ * * fpga_region struct if successful.
+ * * -EBUSY if someone already has a reference to the region.
+ * * -ENODEV if can't take parent driver module refcount.
*/
static struct fpga_region *fpga_region_get(struct fpga_region *region)
{
@@ -91,7 +92,7 @@ static void fpga_region_put(struct fpga_region *region)
* The caller will need to call fpga_bridges_put() before attempting to
* reprogram the region.
*
- * Return 0 for success or negative error code.
+ * Return: 0 for success or negative error code.
*/
int fpga_region_program_fpga(struct fpga_region *region)
{
@@ -288,8 +289,9 @@ static void fpga_region_dev_release(struct device *dev)
}

/**
- * fpga_region_init - init function for fpga_region class
- * Creates the fpga_region class and registers a reconfig notifier.
+ * fpga_region_init - creates the fpga_region class.
+ *
+ * Return: 0 on success or ERR_PTR() on error.
*/
static int __init fpga_region_init(void)
{
--
2.41.0


2023-07-06 22:02:54

by Randy Dunlap

[permalink] [raw]
Subject: Re: [RFC PATCH 1/2] fpga: region: fix kernel-doc

Hi--

On 7/6/23 07:27, Marco Pagani wrote:
> - Fix the following warnings issued by the kernel-doc script:
>
> drivers/fpga/fpga-region.c:46: warning: No description found for return value of 'fpga_region_get'
> drivers/fpga/fpga-region.c:97: warning: No description found for return value of 'fpga_region_program_fpga'
> drivers/fpga/fpga-region.c:295: warning: No description found for return value of 'fpga_region_init'
>
> - Remove the "and registers a reconfig notifier" part from the description
> of fpga_region_init() since it does not register an of_overlay notifier
> anymore.
>
> - Remove the outdated "if @np is not an FPGA Region" case from the return
> description of fpga_region_get() and replace it with the case when
> try_module_get() fails.
>
> Signed-off-by: Marco Pagani <[email protected]>

Looks good. Thanks.

Reviewed-by: Randy Dunlap <[email protected]>

> ---
> drivers/fpga/fpga-region.c | 14 ++++++++------
> 1 file changed, 8 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/fpga/fpga-region.c b/drivers/fpga/fpga-region.c
> index ccf6fdab1360..c9d065a6961b 100644
> --- a/drivers/fpga/fpga-region.c
> +++ b/drivers/fpga/fpga-region.c
> @@ -38,9 +38,10 @@ EXPORT_SYMBOL_GPL(fpga_region_class_find);
> *
> * Caller should call fpga_region_put() when done with region.
> *
> - * Return fpga_region struct if successful.
> - * Return -EBUSY if someone already has a reference to the region.
> - * Return -ENODEV if @np is not an FPGA Region.
> + * Return:
> + * * fpga_region struct if successful.
> + * * -EBUSY if someone already has a reference to the region.
> + * * -ENODEV if can't take parent driver module refcount.
> */
> static struct fpga_region *fpga_region_get(struct fpga_region *region)
> {
> @@ -91,7 +92,7 @@ static void fpga_region_put(struct fpga_region *region)
> * The caller will need to call fpga_bridges_put() before attempting to
> * reprogram the region.
> *
> - * Return 0 for success or negative error code.
> + * Return: 0 for success or negative error code.
> */
> int fpga_region_program_fpga(struct fpga_region *region)
> {
> @@ -288,8 +289,9 @@ static void fpga_region_dev_release(struct device *dev)
> }
>
> /**
> - * fpga_region_init - init function for fpga_region class
> - * Creates the fpga_region class and registers a reconfig notifier.
> + * fpga_region_init - creates the fpga_region class.
> + *
> + * Return: 0 on success or ERR_PTR() on error.
> */
> static int __init fpga_region_init(void)
> {

--
~Randy

2023-07-10 08:36:26

by Xu Yilun

[permalink] [raw]
Subject: Re: [RFC PATCH 1/2] fpga: region: fix kernel-doc

On 2023-07-06 at 14:30:34 -0700, Randy Dunlap wrote:
> Hi--
>
> On 7/6/23 07:27, Marco Pagani wrote:
> > - Fix the following warnings issued by the kernel-doc script:
> >
> > drivers/fpga/fpga-region.c:46: warning: No description found for return value of 'fpga_region_get'
> > drivers/fpga/fpga-region.c:97: warning: No description found for return value of 'fpga_region_program_fpga'
> > drivers/fpga/fpga-region.c:295: warning: No description found for return value of 'fpga_region_init'
> >
> > - Remove the "and registers a reconfig notifier" part from the description
> > of fpga_region_init() since it does not register an of_overlay notifier
> > anymore.
> >
> > - Remove the outdated "if @np is not an FPGA Region" case from the return
> > description of fpga_region_get() and replace it with the case when
> > try_module_get() fails.
> >
> > Signed-off-by: Marco Pagani <[email protected]>
>
> Looks good. Thanks.
>
> Reviewed-by: Randy Dunlap <[email protected]>

Acked-by: Xu Yilun <[email protected]>

Applied.

BTW: No need to have RFC if you think it is ready for full review.