diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2012-10-04 02:38:53 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2012-10-29 14:04:44 -0400 |
commit | 119c71276b43e3daf5e7b0661dcf63f224e2fc8d (patch) | |
tree | ee1d2004722387b52978d27560f6309e98e5b21c /include | |
parent | 7d4998f71b292ea8e88d1874b26866092f66412b (diff) |
clk: Document .is_enabled op
Add the missing kernel-doc for this op.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/clk-provider.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index c12731582920..2aa808bdc257 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h | |||
@@ -53,6 +53,10 @@ struct clk_hw; | |||
53 | * @disable: Disable the clock atomically. Called with enable_lock held. | 53 | * @disable: Disable the clock atomically. Called with enable_lock held. |
54 | * This function must not sleep. | 54 | * This function must not sleep. |
55 | * | 55 | * |
56 | * @is_enabled: Queries the hardware to determine if the clock is enabled. | ||
57 | * This function must not sleep. Optional, if this op is not | ||
58 | * set then the enable count will be used. | ||
59 | * | ||
56 | * @recalc_rate Recalculate the rate of this clock, by quering hardware. The | 60 | * @recalc_rate Recalculate the rate of this clock, by quering hardware. The |
57 | * parent rate is an input parameter. It is up to the caller to | 61 | * parent rate is an input parameter. It is up to the caller to |
58 | * insure that the prepare_mutex is held across this call. | 62 | * insure that the prepare_mutex is held across this call. |