Messages in this thread Patch in this message |  | | From | Stephen Boyd <> | Subject | [PATCH 05/12] clk: fixed-rate: Document accuracy member | Date | Fri, 30 Aug 2019 08:09:16 -0700 |
| |
This member isn't documented, leading to kernel-doc warnings. Document it.
Cc: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org> --- include/linux/clk-provider.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 028f7d3cea85..473e9d85bac0 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -320,6 +320,7 @@ struct clk_hw { * struct clk_fixed_rate - fixed-rate clock * @hw: handle between common and hardware-specific interfaces * @fixed_rate: constant frequency of clock + * @fixed_accuracy: constant accuracy of clock in ppb (parts per billion) */ struct clk_fixed_rate { struct clk_hw hw; -- Sent by a computer through tubes
|  |