diff options
author | Jerome Brunet <jbrunet@baylibre.com> | 2018-02-14 16:43:38 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-03-13 01:10:25 +0300 |
commit | fe3f338f0cb2ed4d4f06da054c21ae2f8a36ef2d (patch) | |
tree | d9bce82723835aed5170a90db786bba5b362f72a /include/linux/clk-provider.h | |
parent | 541debae0adf0bee96137724fa1ce81d3102d14c (diff) | |
download | linux-fe3f338f0cb2ed4d4f06da054c21ae2f8a36ef2d.tar.xz |
clk: fix mux clock documentation
The mux documentation mentions the non-existing parameter width instead
of mask, so just sed this.
The table field is missing in the documentation of clk_mux.
Add a small blurb explaining what it is
Fixes: 9d9f78ed9af0 ("clk: basic clock hardware types")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Michael Turquette <mturquette@baylibre.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'include/linux/clk-provider.h')
-rw-r--r-- | include/linux/clk-provider.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index fe720d679c31..cb18526d69cb 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -450,8 +450,9 @@ void clk_hw_unregister_divider(struct clk_hw *hw); * * @hw: handle between common and hardware-specific interfaces * @reg: register controlling multiplexer + * @table: array of register values corresponding to the parent index * @shift: shift to multiplexer bit field - * @width: width of mutliplexer bit field + * @mask: mask of mutliplexer bit field * @flags: hardware-specific flags * @lock: register lock * |