Commit 6378cfdc authored by Stephen Boyd's avatar Stephen Boyd

clk: Clean up kernel-doc errors

Two things aren't documented causing kernel-doc to fail when checking
the core clk.c file. Fix them so that this file is clean.
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
Link: https://lore.kernel.org/r/20200622090935.213833-1-sboyd@kernel.org
parent 6c4411f1
...@@ -4135,6 +4135,7 @@ static int devm_clk_hw_match(struct device *dev, void *res, void *data) ...@@ -4135,6 +4135,7 @@ static int devm_clk_hw_match(struct device *dev, void *res, void *data)
/** /**
* devm_clk_unregister - resource managed clk_unregister() * devm_clk_unregister - resource managed clk_unregister()
* @dev: device that is unregistering the clock data
* @clk: clock to unregister * @clk: clock to unregister
* *
* Deallocate a clock allocated with devm_clk_register(). Normally * Deallocate a clock allocated with devm_clk_register(). Normally
...@@ -4324,6 +4325,8 @@ static void clk_core_reparent_orphans(void) ...@@ -4324,6 +4325,8 @@ static void clk_core_reparent_orphans(void)
* @node: Pointer to device tree node of clock provider * @node: Pointer to device tree node of clock provider
* @get: Get clock callback. Returns NULL or a struct clk for the * @get: Get clock callback. Returns NULL or a struct clk for the
* given clock specifier * given clock specifier
* @get_hw: Get clk_hw callback. Returns NULL, ERR_PTR or a
* struct clk_hw for the given clock specifier
* @data: context pointer to be passed into @get callback * @data: context pointer to be passed into @get callback
*/ */
struct of_clk_provider { struct of_clk_provider {
......
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