public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: <linux/clk.h>: correct clk_get_parent() documentation
@ 2021-04-27  3:13 Randy Dunlap
  2021-04-27  9:38 ` Russell King - ARM Linux admin
  0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2021-04-27  3:13 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, Russell King, linux-clk

Make the kernel-doc return value agree with both the stub implementation
in <linux/clk.h> and the non-stub function in drivers/clk/clk.c.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Russell King <linux@armlinux.org.uk>
Cc: linux-clk@vger.kernel.org
---
There are several drivers that call clk_get_parent() and use its
return value as though it returns an ERR_PTR(). I am working on a
patch series to fix those.

 include/linux/clk.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-next-20210426.orig/include/linux/clk.h
+++ linux-next-20210426/include/linux/clk.h
@@ -744,8 +744,8 @@ int clk_set_parent(struct clk *clk, stru
  * clk_get_parent - get the parent clock source for this clock
  * @clk: clock source
  *
- * Returns struct clk corresponding to parent clock source, or
- * valid IS_ERR() condition containing errno.
+ * Return: &struct clk corresponding to parent clock source, or
+ * %NULL if clk is %NULL.
  */
 struct clk *clk_get_parent(struct clk *clk);
 

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

end of thread, other threads:[~2021-04-27 18:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-27  3:13 [PATCH] clk: <linux/clk.h>: correct clk_get_parent() documentation Randy Dunlap
2021-04-27  9:38 ` Russell King - ARM Linux admin
2021-04-27 17:07   ` Randy Dunlap
2021-04-27 18:03     ` Russell King - ARM Linux admin
2021-04-27 18:10       ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox