diff options
author | Olof Johansson <olof@lixom.net> | 2013-06-01 02:23:25 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-06-01 02:23:25 -0400 |
commit | 85b9174fda1d516198b4a46a7795e43636a3ea4c (patch) | |
tree | 2721a32c07ca3e1d46df573a19b4e92853688966 /arch/arm/mach-mvebu/armada-370-xp.c | |
parent | 2dbefbf6a803d65f6327fe617f5e1960f218ce01 (diff) | |
parent | ea7e0bd7e78868bbe6df6834595ef96166dd296a (diff) |
Merge tag 'seb_clk-3.11' of git://git.infradead.org/users/jcooper/linux into next/soc
From Jason Cooper:
mvebu clock restructuring for v3.11
- clk: mvebu
- reorganize by SoC to remove built up #ifdefs
- add clk flags per clock gate
* tag 'seb_clk-3.11' of git://git.infradead.org/users/jcooper/linux:
clk: mvebu: disintegrate obsolete file
ARM: mvebu: move DT boards to SoC-centric clock init
ARM: kirkwood: move DT boards to SoC-centric clock init
ARM: dove: move DT boards to SoC-centric clock init
clk: mvebu: add Armada XP SoC-centric clock init
clk: mvebu: add Armada 370 SoC-centric clock init
clk: mvebu: add Kirkwood SoC-centric clock init
clk: mvebu: add Dove SoC-centric clock init
clk: mvebu: add common clock functions for core clk and clk gating
clk: mvebu: introduce per-clock-gate flags
Diffstat (limited to 'arch/arm/mach-mvebu/armada-370-xp.c')
-rw-r--r-- | arch/arm/mach-mvebu/armada-370-xp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-mvebu/armada-370-xp.c b/arch/arm/mach-mvebu/armada-370-xp.c index 1c48890bb72b..ebbc99739726 100644 --- a/arch/arm/mach-mvebu/armada-370-xp.c +++ b/arch/arm/mach-mvebu/armada-370-xp.c | |||
@@ -14,10 +14,10 @@ | |||
14 | 14 | ||
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
17 | #include <linux/clk-provider.h> | ||
17 | #include <linux/of_platform.h> | 18 | #include <linux/of_platform.h> |
18 | #include <linux/io.h> | 19 | #include <linux/io.h> |
19 | #include <linux/time-armada-370-xp.h> | 20 | #include <linux/time-armada-370-xp.h> |
20 | #include <linux/clk/mvebu.h> | ||
21 | #include <linux/dma-mapping.h> | 21 | #include <linux/dma-mapping.h> |
22 | #include <linux/mbus.h> | 22 | #include <linux/mbus.h> |
23 | #include <linux/irqchip.h> | 23 | #include <linux/irqchip.h> |
@@ -45,7 +45,7 @@ void __init armada_370_xp_map_io(void) | |||
45 | 45 | ||
46 | void __init armada_370_xp_timer_and_clk_init(void) | 46 | void __init armada_370_xp_timer_and_clk_init(void) |
47 | { | 47 | { |
48 | mvebu_clocks_init(); | 48 | of_clk_init(NULL); |
49 | armada_370_xp_timer_init(); | 49 | armada_370_xp_timer_init(); |
50 | } | 50 | } |
51 | 51 | ||