* [PATCH v2] PM: SmartReflex: fix kernel-doc warnings in smartreflex.h
@ 2026-08-31 5:50 Randy Dunlap
2026-09-03 13:58 ` Nishanth Menon
0 siblings, 1 reply; 2+ messages in thread
From: Randy Dunlap @ 2026-08-31 5:50 UTC (permalink / raw)
To: linux-kernel; +Cc: Randy Dunlap, Nishanth Menon, Sebastian Reichel, linux-pm
Use the correct function name in a kernel-doc comment and
use the correct kernel-doc format for struct members to avoid
kernel-doc warnings:
Warning: include/linux/power/smartreflex.h:187 expecting prototype for
test_cond_timeout(). Prototype was for sr_test_cond_timeout() instead
Warning: include/linux/power/smartreflex.h:292 struct member 'err_weight'
not described in 'omap_sr_data'
Warning: include/linux/power/smartreflex.h:292 struct member
'err_maxlimit' not described in 'omap_sr_data'
Warning: include/linux/power/smartreflex.h:292 struct member 'accum_data'
not described in 'omap_sr_data'
Warning: include/linux/power/smartreflex.h:292 struct member
'senn_avgweight' not described in 'omap_sr_data'
Warning: include/linux/power/smartreflex.h:292 struct member
'senp_avgweight' not described in 'omap_sr_data'
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
v2: rebase & resend
Cc: Nishanth Menon <nm@ti.com>
Cc: Sebastian Reichel <sre@kernel.org>
Cc: linux-pm@vger.kernel.org
include/linux/power/smartreflex.h | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
--- linux-next-20260828.orig/include/linux/power/smartreflex.h
+++ linux-next-20260828/include/linux/power/smartreflex.h
@@ -174,7 +174,7 @@ struct omap_sr {
};
/**
- * test_cond_timeout - busy-loop, testing a condition
+ * sr_test_cond_timeout - busy-loop, testing a condition
* @cond: condition to test until it evaluates to true
* @timeout: maximum number of microseconds in the timeout
* @index: loop index (integer)
@@ -267,11 +267,11 @@ struct omap_sr_nvalue_table {
* @ip_type: Smartreflex IP type.
* @senp_mod: SENPENABLE value of the sr CONFIG register
* @senn_mod: SENNENABLE value for sr CONFIG register
- * @err_weight ERRWEIGHT value of the sr ERRCONFIG register
- * @err_maxlimit ERRMAXLIMIT value of the sr ERRCONFIG register
- * @accum_data ACCUMDATA value of the sr CONFIG register
- * @senn_avgweight SENNAVGWEIGHT value of the sr AVGWEIGHT register
- * @senp_avgweight SENPAVGWEIGHT value of the sr AVGWEIGHT register
+ * @err_weight: ERRWEIGHT value of the sr ERRCONFIG register
+ * @err_maxlimit: ERRMAXLIMIT value of the sr ERRCONFIG register
+ * @accum_data: ACCUMDATA value of the sr CONFIG register
+ * @senn_avgweight: SENNAVGWEIGHT value of the sr AVGWEIGHT register
+ * @senp_avgweight: SENPAVGWEIGHT value of the sr AVGWEIGHT register
* @nvalue_count: Number of distinct nvalues in the nvalue table
* @nvalue_table: table containing the efuse offsets and nvalues
* corresponding to them.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH v2] PM: SmartReflex: fix kernel-doc warnings in smartreflex.h
2026-08-31 5:50 [PATCH v2] PM: SmartReflex: fix kernel-doc warnings in smartreflex.h Randy Dunlap
@ 2026-09-03 13:58 ` Nishanth Menon
0 siblings, 0 replies; 2+ messages in thread
From: Nishanth Menon @ 2026-09-03 13:58 UTC (permalink / raw)
To: Randy Dunlap; +Cc: linux-kernel, Sebastian Reichel, linux-pm
On 22:50-20260830, Randy Dunlap wrote:
> Use the correct function name in a kernel-doc comment and
> use the correct kernel-doc format for struct members to avoid
> kernel-doc warnings:
>
> Warning: include/linux/power/smartreflex.h:187 expecting prototype for
> test_cond_timeout(). Prototype was for sr_test_cond_timeout() instead
> Warning: include/linux/power/smartreflex.h:292 struct member 'err_weight'
> not described in 'omap_sr_data'
> Warning: include/linux/power/smartreflex.h:292 struct member
> 'err_maxlimit' not described in 'omap_sr_data'
> Warning: include/linux/power/smartreflex.h:292 struct member 'accum_data'
> not described in 'omap_sr_data'
> Warning: include/linux/power/smartreflex.h:292 struct member
> 'senn_avgweight' not described in 'omap_sr_data'
> Warning: include/linux/power/smartreflex.h:292 struct member
> 'senp_avgweight' not described in 'omap_sr_data'
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> ---
> v2: rebase & resend
>
> Cc: Nishanth Menon <nm@ti.com>
> Cc: Sebastian Reichel <sre@kernel.org>
> Cc: linux-pm@vger.kernel.org
>
> include/linux/power/smartreflex.h | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> --- linux-next-20260828.orig/include/linux/power/smartreflex.h
> +++ linux-next-20260828/include/linux/power/smartreflex.h
> @@ -174,7 +174,7 @@ struct omap_sr {
> };
>
> /**
> - * test_cond_timeout - busy-loop, testing a condition
> + * sr_test_cond_timeout - busy-loop, testing a condition
> * @cond: condition to test until it evaluates to true
> * @timeout: maximum number of microseconds in the timeout
> * @index: loop index (integer)
> @@ -267,11 +267,11 @@ struct omap_sr_nvalue_table {
> * @ip_type: Smartreflex IP type.
> * @senp_mod: SENPENABLE value of the sr CONFIG register
> * @senn_mod: SENNENABLE value for sr CONFIG register
> - * @err_weight ERRWEIGHT value of the sr ERRCONFIG register
> - * @err_maxlimit ERRMAXLIMIT value of the sr ERRCONFIG register
> - * @accum_data ACCUMDATA value of the sr CONFIG register
> - * @senn_avgweight SENNAVGWEIGHT value of the sr AVGWEIGHT register
> - * @senp_avgweight SENPAVGWEIGHT value of the sr AVGWEIGHT register
> + * @err_weight: ERRWEIGHT value of the sr ERRCONFIG register
> + * @err_maxlimit: ERRMAXLIMIT value of the sr ERRCONFIG register
> + * @accum_data: ACCUMDATA value of the sr CONFIG register
> + * @senn_avgweight: SENNAVGWEIGHT value of the sr AVGWEIGHT register
> + * @senp_avgweight: SENPAVGWEIGHT value of the sr AVGWEIGHT register
> * @nvalue_count: Number of distinct nvalues in the nvalue table
> * @nvalue_table: table containing the efuse offsets and nvalues
> * corresponding to them.
Reviewed-by: Nishanth Menon <nm@ti.com>
--
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D
https://ti.com/opensource
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-03 13:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-31 5:50 [PATCH v2] PM: SmartReflex: fix kernel-doc warnings in smartreflex.h Randy Dunlap
2026-09-03 13:58 ` Nishanth Menon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox