Commit 2af2544d authored by Shawn Lin's avatar Shawn Lin Committed by Heiko Stuebner

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: default avatarShawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: default avatarHeiko Stuebner <heiko@sntech.de>
parent cb3abdd6
...@@ -130,7 +130,7 @@ enum rockchip_pll_type { ...@@ -130,7 +130,7 @@ enum rockchip_pll_type {
} }
/** /**
* struct rockchip_clk_provider: information about clock provider * struct rockchip_clk_provider - information about clock provider
* @reg_base: virtual address for the register base. * @reg_base: virtual address for the register base.
* @clk_data: holds clock related data like clk* and number of clocks. * @clk_data: holds clock related data like clk* and number of clocks.
* @cru_node: device-node of the clock-provider * @cru_node: device-node of the clock-provider
...@@ -161,10 +161,11 @@ struct rockchip_pll_rate_table { ...@@ -161,10 +161,11 @@ struct rockchip_pll_rate_table {
}; };
/** /**
* struct rockchip_pll_clock: information about pll clock * struct rockchip_pll_clock - information about pll clock
* @id: platform specific id of the clock. * @id: platform specific id of the clock.
* @name: name of this pll clock. * @name: name of this pll clock.
* @parent_name: name of the parent clock. * @parent_names: name of the parent clock.
* @num_parents: number of parents
* @flags: optional flags for basic clock. * @flags: optional flags for basic clock.
* @con_offset: offset of the register for configuring the PLL. * @con_offset: offset of the register for configuring the PLL.
* @mode_offset: offset of the register for configuring the PLL-mode. * @mode_offset: offset of the register for configuring the PLL-mode.
...@@ -232,7 +233,7 @@ struct rockchip_cpuclk_rate_table { ...@@ -232,7 +233,7 @@ struct rockchip_cpuclk_rate_table {
}; };
/** /**
* struct rockchip_cpuclk_reg_data: describes register offsets and masks of the cpuclock * struct rockchip_cpuclk_reg_data - describes register offsets and masks of the cpuclock
* @core_reg: register offset of the core settings register * @core_reg: register offset of the core settings register
* @div_core_shift: core divider offset used to divide the pll value * @div_core_shift: core divider offset used to divide the pll value
* @div_core_mask: core divider mask * @div_core_mask: core divider mask
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment