diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2014-07-08 12:21:16 -0400 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2014-07-15 05:54:09 -0400 |
commit | b736bcb3d8fe6182d12feb0412106802d80b4527 (patch) | |
tree | 068543a0e3ec5c1458148dae98925db6f4353d1f | |
parent | 63e60368956ea076278dd3d70dc80b366e0ec6f3 (diff) |
clk: at91: remove the useless CLK_IGNORE_UNUSED flag
The CLK_IGNORE_UNUSED flag was added on all the system clocks because of the
ddrck. Now that it is handled by the ram controller driver, we can drop it.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
-rw-r--r-- | drivers/clk/at91/clk-system.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/clk/at91/clk-system.c b/drivers/clk/at91/clk-system.c index 8c96307d7363..a76d03fd577b 100644 --- a/drivers/clk/at91/clk-system.c +++ b/drivers/clk/at91/clk-system.c | |||
@@ -119,13 +119,7 @@ at91_clk_register_system(struct at91_pmc *pmc, const char *name, | |||
119 | init.ops = &system_ops; | 119 | init.ops = &system_ops; |
120 | init.parent_names = &parent_name; | 120 | init.parent_names = &parent_name; |
121 | init.num_parents = 1; | 121 | init.num_parents = 1; |
122 | /* | 122 | init.flags = CLK_SET_RATE_PARENT; |
123 | * CLK_IGNORE_UNUSED is used to avoid ddrck switch off. | ||
124 | * TODO : we should implement a driver supporting at91 ddr controller | ||
125 | * (see drivers/memory) which would request and enable the ddrck clock. | ||
126 | * When this is done we will be able to remove CLK_IGNORE_UNUSED flag. | ||
127 | */ | ||
128 | init.flags = CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED; | ||
129 | 123 | ||
130 | sys->id = id; | 124 | sys->id = id; |
131 | sys->hw.init = &init; | 125 | sys->hw.init = &init; |