diff options
author | Sylwester Nawrocki <s.nawrocki@samsung.com> | 2019-07-01 14:46:51 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-07-23 00:32:20 +0300 |
commit | 6ee82ef04e38b0d8b09b04bc1b068673deed6582 (patch) | |
tree | 9a00476a5df634d423d2bb03fd7d3b6af9e1a183 /include | |
parent | 1573eebeaa8055777eb753f9b4d1cbe653380c38 (diff) | |
download | linux-6ee82ef04e38b0d8b09b04bc1b068673deed6582.tar.xz |
clk: Add missing documentation of devm_clk_bulk_get_optional() argument
Fix an incomplete devm_clk_bulk_get_optional() function documentation
by adding description of the num_clks argument as in other *clk_bulk*
functions.
Fixes: 9bd5ef0bd874 ("clk: Add devm_clk_bulk_get_optional() function")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/clk.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/clk.h b/include/linux/clk.h index 3c096c7a51dc..853a8f181394 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h @@ -359,6 +359,7 @@ int __must_check devm_clk_bulk_get(struct device *dev, int num_clks, /** * devm_clk_bulk_get_optional - managed get multiple optional consumer clocks * @dev: device for clock "consumer" + * @num_clks: the number of clk_bulk_data * @clks: pointer to the clk_bulk_data table of consumer * * Behaves the same as devm_clk_bulk_get() except where there is no clock |