diff options
author | Boris BREZILLON <boris.brezillon@free-electrons.com> | 2014-05-12 12:23:34 -0400 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2014-05-22 12:03:13 -0400 |
commit | b099c604d31d4f0cecd212e0830d33e84ded2f1b (patch) | |
tree | f07ec7d4bf7fdf3f996a0154ba0d4e7c6637305f /arch/arm/mach-at91 | |
parent | 6a84872a3c3090993be108f02f91b4de062a7d32 (diff) |
ARM: at91: prepare common clk transition for sam9x5 SoCs
This patch encloses sam9x5 old clk registration in
"#if defined(CONFIG_OLD_CLK_AT91) #endif" sections.
Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r-- | arch/arm/mach-at91/at91sam9x5.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/at91sam9x5.c b/arch/arm/mach-at91/at91sam9x5.c index 9ad781d5ee7c..028268ff3722 100644 --- a/arch/arm/mach-at91/at91sam9x5.c +++ b/arch/arm/mach-at91/at91sam9x5.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 | * -------------------------------------------------------------------- */ |
@@ -313,6 +314,9 @@ static void __init at91sam9x5_register_clocks(void) | |||
313 | clk_register(&pck0); | 314 | clk_register(&pck0); |
314 | clk_register(&pck1); | 315 | clk_register(&pck1); |
315 | } | 316 | } |
317 | #else | ||
318 | #define at91sam9x5_register_clocks NULL | ||
319 | #endif | ||
316 | 320 | ||
317 | /* -------------------------------------------------------------------- | 321 | /* -------------------------------------------------------------------- |
318 | * AT91SAM9x5 processor initialization | 322 | * AT91SAM9x5 processor initialization |