Skip to content

Commit 9b6c057

Browse files
rddunlapbebarino
authored andcommitted
clk: ti: dpll3xxx: use correct function names in kernel-doc
Use function names that match the implementation in kernel-doc comments to avoid kernel-doc warnings: dpll3xxx.c:938: warning: expecting prototype for omap3_non_core_dpll_save_context(). Prototype was for omap3_noncore_dpll_save_context() instead dpll3xxx.c:967: warning: expecting prototype for omap3_core_dpll_restore_context(). Prototype was for omap3_noncore_dpll_restore_context() instead Signed-off-by: Randy Dunlap <[email protected]> Cc: Tero Kristo <[email protected]> Cc: [email protected] Cc: Michael Turquette <[email protected]> Cc: Stephen Boyd <[email protected]> Cc: [email protected] Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Stephen Boyd <[email protected]>
1 parent 732b1c2 commit 9b6c057

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/clk/ti/dpll3xxx.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ void omap3_core_dpll_restore_context(struct clk_hw *hw)
928928
}
929929

930930
/**
931-
* omap3_non_core_dpll_save_context - Save the m and n values of the divider
931+
* omap3_noncore_dpll_save_context - Save the m and n values of the divider
932932
* @hw: pointer struct clk_hw
933933
*
934934
* Before the dpll registers are lost save the last rounded rate m and n
@@ -957,7 +957,7 @@ int omap3_noncore_dpll_save_context(struct clk_hw *hw)
957957
}
958958

959959
/**
960-
* omap3_core_dpll_restore_context - restore the m and n values of the divider
960+
* omap3_noncore_dpll_restore_context - restore the m and n values of the divider
961961
* @hw: pointer struct clk_hw
962962
*
963963
* Restore the last rounded rate m and n

0 commit comments

Comments
 (0)