Skip to content

Commit 4f71bdc

Browse files
Lee Jonesbebarino
authored andcommitted
clk: st: clkgen-fsyn: Fix worthy struct documentation demote partially filled one
Fixes the following W=1 kernel build warning(s): drivers/clk/st/clkgen-fsyn.c:186: warning: Function parameter or member 'data' not described in 'st_clk_quadfs_pll' drivers/clk/st/clkgen-fsyn.c:466: warning: Function parameter or member 'regs_base' not described in 'st_clk_quadfs_fsynth' drivers/clk/st/clkgen-fsyn.c:466: warning: Function parameter or member 'lock' not described in 'st_clk_quadfs_fsynth' drivers/clk/st/clkgen-fsyn.c:466: warning: Function parameter or member 'data' not described in 'st_clk_quadfs_fsynth' drivers/clk/st/clkgen-fsyn.c:466: warning: Function parameter or member 'chan' not described in 'st_clk_quadfs_fsynth' drivers/clk/st/clkgen-fsyn.c:466: warning: Function parameter or member 'md' not described in 'st_clk_quadfs_fsynth' drivers/clk/st/clkgen-fsyn.c:466: warning: Function parameter or member 'pe' not described in 'st_clk_quadfs_fsynth' drivers/clk/st/clkgen-fsyn.c:466: warning: Function parameter or member 'sdiv' not described in 'st_clk_quadfs_fsynth' Cc: Michael Turquette <mturquette@baylibre.com> Cc: Stephen Boyd <sboyd@kernel.org> Cc: Kees Cook <keescook@chromium.org> Cc: Stephen Gallimore <stephen.gallimore@st.com> Cc: Pankaj Dev <pankaj.dev@st.com> Cc: linux-clk@vger.kernel.org Signed-off-by: Lee Jones <lee.jones@linaro.org> Link: https://lore.kernel.org/r/20210120093040.1719407-13-lee.jones@linaro.org Signed-off-by: Stephen Boyd <sboyd@kernel.org>
1 parent c137261 commit 4f71bdc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

drivers/clk/st/clkgen-fsyn.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,10 @@ static const struct clkgen_quadfs_data st_fs660c32_D = {
172172
* ST quad channel frequency synthesizer block
173173
*
174174
* @hw: handle between common and hardware-specific interfaces.
175-
* @ndiv: regmap field for the ndiv control.
176175
* @regs_base: base address of the configuration registers.
177176
* @lock: spinlock.
178-
*
177+
* @data: local driver data
178+
* @ndiv: regmap field for the ndiv control.
179179
*/
180180
struct st_clk_quadfs_pll {
181181
struct clk_hw hw;
@@ -426,7 +426,7 @@ static struct clk * __init st_clk_register_quadfs_pll(
426426
* parent - fixed parent. No clk_set_parent support
427427
*/
428428

429-
/**
429+
/*
430430
* struct st_clk_quadfs_fsynth - One clock output from a four channel digital
431431
* frequency synthesizer (fsynth) block.
432432
*

0 commit comments

Comments
 (0)