diff options
author | Shawn Lin <shawn.lin@rock-chips.com> | 2016-03-12 11:25:14 -0500 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2016-03-27 07:03:35 -0400 |
commit | 2af2544d60f007277a98f66391a521ec377a6a67 (patch) | |
tree | 94739e71b2df8891466fcb2bf04cb3db24eb1ed2 | |
parent | cb3abdd628abe8583c81b07d5bb8b6d1dbd12227 (diff) |
clk: rockchip: fix warning reported by kernel-doc
./scripts/kernel-doc -man -v drivers/clk/rockchip/clk.h > /dev/null
drivers/clk/rockchip/clk.h:133: warning: missing initial short
description on line:
* struct rockchip_clk_provider: information about clock provider
drivers/clk/rockchip/clk.h:133: info: Scanning doc for struct
drivers/clk/rockchip/clk.h:164: warning: missing initial short
description on line:
* struct rockchip_pll_clock: information about pll clock
drivers/clk/rockchip/clk.h:164: info: Scanning doc for struct
drivers/clk/rockchip/clk.h:194: warning: No description found for
parameter 'parent_names'
drivers/clk/rockchip/clk.h:194: warning: No description found for
parameter 'num_parents'
drivers/clk/rockchip/clk.h:194: warning: Excess struct/union/enum/typedef
member 'parent_name' description in 'rockchip_pll_clock'
drivers/clk/rockchip/clk.h:235: warning: missing initial short
description on line:
* struct rockchip_cpuclk_reg_data: describes register offsets and
masks of the cpuclock
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
-rw-r--r-- | drivers/clk/rockchip/clk.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/clk/rockchip/clk.h b/drivers/clk/rockchip/clk.h index b298f99dae97..cb6a63963693 100644 --- a/drivers/clk/rockchip/clk.h +++ b/drivers/clk/rockchip/clk.h | |||
@@ -130,7 +130,7 @@ enum rockchip_pll_type { | |||
130 | } | 130 | } |
131 | 131 | ||
132 | /** | 132 | /** |
133 | * struct rockchip_clk_provider: information about clock provider | 133 | * struct rockchip_clk_provider - information about clock provider |
134 | * @reg_base: virtual address for the register base. | 134 | * @reg_base: virtual address for the register base. |
135 | * @clk_data: holds clock related data like clk* and number of clocks. | 135 | * @clk_data: holds clock related data like clk* and number of clocks. |
136 | * @cru_node: device-node of the clock-provider | 136 | * @cru_node: device-node of the clock-provider |
@@ -161,10 +161,11 @@ struct rockchip_pll_rate_table { | |||
161 | }; | 161 | }; |
162 | 162 | ||
163 | /** | 163 | /** |
164 | * struct rockchip_pll_clock: information about pll clock | 164 | * struct rockchip_pll_clock - information about pll clock |
165 | * @id: platform specific id of the clock. | 165 | * @id: platform specific id of the clock. |
166 | * @name: name of this pll clock. | 166 | * @name: name of this pll clock. |
167 | * @parent_name: name of the parent clock. | 167 | * @parent_names: name of the parent clock. |
168 | * @num_parents: number of parents | ||
168 | * @flags: optional flags for basic clock. | 169 | * @flags: optional flags for basic clock. |
169 | * @con_offset: offset of the register for configuring the PLL. | 170 | * @con_offset: offset of the register for configuring the PLL. |
170 | * @mode_offset: offset of the register for configuring the PLL-mode. | 171 | * @mode_offset: offset of the register for configuring the PLL-mode. |
@@ -232,7 +233,7 @@ struct rockchip_cpuclk_rate_table { | |||
232 | }; | 233 | }; |
233 | 234 | ||
234 | /** | 235 | /** |
235 | * struct rockchip_cpuclk_reg_data: describes register offsets and masks of the cpuclock | 236 | * struct rockchip_cpuclk_reg_data - describes register offsets and masks of the cpuclock |
236 | * @core_reg: register offset of the core settings register | 237 | * @core_reg: register offset of the core settings register |
237 | * @div_core_shift: core divider offset used to divide the pll value | 238 | * @div_core_shift: core divider offset used to divide the pll value |
238 | * @div_core_mask: core divider mask | 239 | * @div_core_mask: core divider mask |