Skip to content

Commit b90f372

Browse files
rddunlapbebarino
authored andcommitted
linux/clk.h: use correct kernel-doc notation for 2 functions
Fix kernel-doc notation for 2 functions so that the generated html is correct. Currently it skips all text between the ':' and the '-', so "[un]register a clock rate" is missing. Fixes: 86bcfa2 ("clk: add pr_debug & kerneldoc around clk notifiers") Signed-off-by: Randy Dunlap <[email protected]> Cc: Mike Turquette <[email protected]> Cc: Russell King <[email protected]> Cc: [email protected] Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Stephen Boyd <[email protected]>
1 parent 5c8fe58 commit b90f372

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/linux/clk.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ struct clk_bulk_data {
9292
#ifdef CONFIG_COMMON_CLK
9393

9494
/**
95-
* clk_notifier_register: register a clock rate-change notifier callback
95+
* clk_notifier_register - register a clock rate-change notifier callback
9696
* @clk: clock whose rate we are interested in
9797
* @nb: notifier block with callback function pointer
9898
*
@@ -103,7 +103,7 @@ struct clk_bulk_data {
103103
int clk_notifier_register(struct clk *clk, struct notifier_block *nb);
104104

105105
/**
106-
* clk_notifier_unregister: unregister a clock rate-change notifier callback
106+
* clk_notifier_unregister - unregister a clock rate-change notifier callback
107107
* @clk: clock whose rate we are no longer interested in
108108
* @nb: notifier block which will be unregistered
109109
*/

0 commit comments

Comments
 (0)