diff options
| author | Olof Johansson <olof@lixom.net> | 2013-05-31 23:23:25 -0700 | 
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2013-05-31 23:23:25 -0700 | 
| commit | 85b9174fda1d516198b4a46a7795e43636a3ea4c (patch) | |
| tree | 2721a32c07ca3e1d46df573a19b4e92853688966 /arch/arm/mach-mvebu | |
| parent | 2dbefbf6a803d65f6327fe617f5e1960f218ce01 (diff) | |
| parent | ea7e0bd7e78868bbe6df6834595ef96166dd296a (diff) | |
| download | linux-85b9174fda1d516198b4a46a7795e43636a3ea4c.tar.bz2 | |
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')
| -rw-r--r-- | arch/arm/mach-mvebu/Kconfig | 5 | ||||
| -rw-r--r-- | arch/arm/mach-mvebu/armada-370-xp.c | 4 | 
2 files changed, 4 insertions, 5 deletions
| diff --git a/arch/arm/mach-mvebu/Kconfig b/arch/arm/mach-mvebu/Kconfig index fb827ac9d906..9eb63d724602 100644 --- a/arch/arm/mach-mvebu/Kconfig +++ b/arch/arm/mach-mvebu/Kconfig @@ -10,9 +10,6 @@ config ARCH_MVEBU  	select PLAT_ORION  	select SPARSE_IRQ  	select CLKDEV_LOOKUP -	select MVEBU_CLK_CORE -	select MVEBU_CLK_CPU -	select MVEBU_CLK_GATING  	select MVEBU_MBUS  	select ZONE_DMA if ARM_LPAE  	select ARCH_REQUIRE_GPIOLIB @@ -32,6 +29,7 @@ config MACH_ARMADA_370_XP  config MACH_ARMADA_370  	bool "Marvell Armada 370 boards" +	select ARMADA_370_CLK  	select MACH_ARMADA_370_XP  	select PINCTRL_ARMADA_370  	help @@ -40,6 +38,7 @@ config MACH_ARMADA_370  config MACH_ARMADA_XP  	bool "Marvell Armada XP boards" +	select ARMADA_XP_CLK  	select MACH_ARMADA_370_XP  	select PINCTRL_ARMADA_XP  	help 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 @@  #include <linux/kernel.h>  #include <linux/init.h> +#include <linux/clk-provider.h>  #include <linux/of_platform.h>  #include <linux/io.h>  #include <linux/time-armada-370-xp.h> -#include <linux/clk/mvebu.h>  #include <linux/dma-mapping.h>  #include <linux/mbus.h>  #include <linux/irqchip.h> @@ -45,7 +45,7 @@ void __init armada_370_xp_map_io(void)  void __init armada_370_xp_timer_and_clk_init(void)  { -	mvebu_clocks_init(); +	of_clk_init(NULL);  	armada_370_xp_timer_init();  } |