diff options
author | James Hogan <james.hogan@imgtec.com> | 2013-03-25 14:35:07 +0000 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-04-02 16:50:26 -0700 |
commit | 3566d40c1a4617461b38c82059bdc41d622faa8b (patch) | |
tree | e59a0c2a55d1511e32d194038c6af92127c0afbd /include/linux/clk-provider.h | |
parent | 533ddeb1e86f506129ee388a6cc13796dcf31311 (diff) |
clk: fix clk_mux::flags kerneldoc
The kerneldoc comment for struct clk_mux documented the non-existent
num_clks instead of flags. Correct this.
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'include/linux/clk-provider.h')
-rw-r--r-- | include/linux/clk-provider.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 1f0352802794..b1675074fe7c 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -284,7 +284,7 @@ struct clk *clk_register_divider_table(struct device *dev, const char *name, * @reg: register controlling multiplexer * @shift: shift to multiplexer bit field * @width: width of mutliplexer bit field - * @num_clks: number of parent clocks + * @flags: hardware-specific flags * @lock: register lock * * Clock with multiple selectable parents. Implements .get_parent, .set_parent |