diff options
author | Rajendra Nayak <rnayak@ti.com> | 2012-06-01 04:32:47 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2012-07-11 18:36:43 -0400 |
commit | f7d8caadfd2813cbada82ce9041b13c38e8e5282 (patch) | |
tree | 0daf2b7e7d16765c5d7b37afa935776e7358c7a3 /include/linux/clk-private.h | |
parent | 357c3f0a6c7613f7230fcaf1eb16190ed2a4b0af (diff) |
clk: Add CLK_IS_BASIC flag to identify basic clocks
Most platforms end up using a mix of basic clock types and
some which use clk_hw_foo struct for filling in custom platform
information when the clocks don't fit into basic types supported.
In platform code, its useful to know if a clock is using a basic
type or clk_hw_foo, which helps platforms know if they can
safely use to_clk_hw_foo to derive the clk_hw_foo pointer from
clk_hw.
Mark all basic clocks with a CLK_IS_BASIC flag.
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'include/linux/clk-private.h')
-rw-r--r-- | include/linux/clk-private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/clk-private.h b/include/linux/clk-private.h index cc9972d1429c..9c7f5807824b 100644 --- a/include/linux/clk-private.h +++ b/include/linux/clk-private.h | |||
@@ -64,7 +64,7 @@ struct clk { | |||
64 | .parent_names = _parent_names, \ | 64 | .parent_names = _parent_names, \ |
65 | .num_parents = ARRAY_SIZE(_parent_names), \ | 65 | .num_parents = ARRAY_SIZE(_parent_names), \ |
66 | .parents = _parents, \ | 66 | .parents = _parents, \ |
67 | .flags = _flags, \ | 67 | .flags = _flags | CLK_IS_BASIC, \ |
68 | } | 68 | } |
69 | 69 | ||
70 | #define DEFINE_CLK_FIXED_RATE(_name, _flags, _rate, \ | 70 | #define DEFINE_CLK_FIXED_RATE(_name, _flags, _rate, \ |