diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-h4.c')
-rw-r--r-- | arch/arm/mach-omap2/board-h4.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/arch/arm/mach-omap2/board-h4.c b/arch/arm/mach-omap2/board-h4.c index ace20482e3e1..313b3f426a56 100644 --- a/arch/arm/mach-omap2/board-h4.c +++ b/arch/arm/mach-omap2/board-h4.c | |||
@@ -27,20 +27,19 @@ | |||
27 | #include <linux/io.h> | 27 | #include <linux/io.h> |
28 | #include <linux/input/matrix_keypad.h> | 28 | #include <linux/input/matrix_keypad.h> |
29 | 29 | ||
30 | #include <mach/hardware.h> | ||
31 | #include <asm/mach-types.h> | 30 | #include <asm/mach-types.h> |
32 | #include <asm/mach/arch.h> | 31 | #include <asm/mach/arch.h> |
33 | #include <asm/mach/map.h> | 32 | #include <asm/mach/map.h> |
34 | 33 | ||
35 | #include <plat/board.h> | ||
36 | #include "common.h" | ||
37 | #include <plat/menelaus.h> | 34 | #include <plat/menelaus.h> |
38 | #include <plat/dma.h> | 35 | #include <plat/dma.h> |
39 | #include <plat/gpmc.h> | 36 | #include <plat/gpmc.h> |
37 | #include <plat/debug-devices.h> | ||
40 | 38 | ||
41 | #include <video/omapdss.h> | 39 | #include <video/omapdss.h> |
42 | #include <video/omap-panel-generic-dpi.h> | 40 | #include <video/omap-panel-generic-dpi.h> |
43 | 41 | ||
42 | #include "common.h" | ||
44 | #include "mux.h" | 43 | #include "mux.h" |
45 | #include "control.h" | 44 | #include "control.h" |
46 | 45 | ||
@@ -266,9 +265,9 @@ static inline void __init h4_init_debug(void) | |||
266 | return; | 265 | return; |
267 | } | 266 | } |
268 | 267 | ||
269 | clk_enable(gpmc_fck); | 268 | clk_prepare_enable(gpmc_fck); |
270 | rate = clk_get_rate(gpmc_fck); | 269 | rate = clk_get_rate(gpmc_fck); |
271 | clk_disable(gpmc_fck); | 270 | clk_disable_unprepare(gpmc_fck); |
272 | clk_put(gpmc_fck); | 271 | clk_put(gpmc_fck); |
273 | 272 | ||
274 | if (is_gpmc_muxed()) | 273 | if (is_gpmc_muxed()) |
@@ -312,7 +311,7 @@ static inline void __init h4_init_debug(void) | |||
312 | gpmc_cs_free(eth_cs); | 311 | gpmc_cs_free(eth_cs); |
313 | 312 | ||
314 | out: | 313 | out: |
315 | clk_disable(gpmc_fck); | 314 | clk_disable_unprepare(gpmc_fck); |
316 | clk_put(gpmc_fck); | 315 | clk_put(gpmc_fck); |
317 | } | 316 | } |
318 | 317 | ||