aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91
diff options
context:
space:
mode:
authorBoris BREZILLON <boris.brezillon@free-electrons.com>2014-05-12 12:26:27 -0400
committerNicolas Ferre <nicolas.ferre@atmel.com>2014-05-22 12:03:15 -0400
commit233df5d124b00808374cca91cd7936e62086c20b (patch)
treed802e33c4a4db2fc8f0f3f6fd17bf6fae2df8039 /arch/arm/mach-at91
parented093dc0d34e1ff89054dfe32b1c155fb387e432 (diff)
ARM: at91: prepare common clk transition for sam9n12 SoC
This patch encloses sam9n12 old clk registration in "#if defined(CONFIG_OLD_CLK_AT91) #endif" sections. Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com> Tested-by: Bo Shen <voice.shen@atmel.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r--arch/arm/mach-at91/at91sam9n12.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/at91sam9n12.c b/arch/arm/mach-at91/at91sam9n12.c
index f2ea7b0a02da..c8988fe5ff70 100644
--- a/arch/arm/mach-at91/at91sam9n12.c
+++ b/arch/arm/mach-at91/at91sam9n12.c
@@ -19,9 +19,10 @@
19#include "board.h" 19#include "board.h"
20#include "soc.h" 20#include "soc.h"
21#include "generic.h" 21#include "generic.h"
22#include "clock.h"
23#include "sam9_smc.h" 22#include "sam9_smc.h"
24 23
24#if defined(CONFIG_OLD_CLK_AT91)
25#include "clock.h"
25/* -------------------------------------------------------------------- 26/* --------------------------------------------------------------------
26 * Clocks 27 * Clocks
27 * -------------------------------------------------------------------- */ 28 * -------------------------------------------------------------------- */
@@ -215,6 +216,9 @@ static void __init at91sam9n12_register_clocks(void)
215 ARRAY_SIZE(periph_clocks_lookups)); 216 ARRAY_SIZE(periph_clocks_lookups));
216 217
217} 218}
219#else
220#define at91sam9n12_register_clocks NULL
221#endif
218 222
219/* -------------------------------------------------------------------- 223/* --------------------------------------------------------------------
220 * AT91SAM9N12 processor initialization 224 * AT91SAM9N12 processor initialization