Messages in this thread Patch in this message |  | | From | Stephen Boyd <> | Subject | [PATCH 08/12] clk: fixed-rate: Document that accuracy isn't a rate | Date | Fri, 30 Aug 2019 08:09:19 -0700 |
| |
This kernel-doc talks about a rate for the accuracy. That's wrong.
Cc: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org> --- include/linux/clk-provider.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index b1ed4b840476..694bd3274221 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -393,7 +393,7 @@ struct clk *clk_register_fixed_rate(struct device *dev, const char *name, * @parent_name: name of clock's parent * @flags: framework-specific flags * @fixed_rate: non-adjustable clock rate - * @fixed_accuracy: non-adjustable clock rate + * @fixed_accuracy: non-adjustable clock accuracy */ #define clk_hw_register_fixed_rate_with_accuracy(dev, name, parent_name, \ flags, fixed_rate, \ -- Sent by a computer through tubes
|  |