From 563793288b61f238254ad664cbf9cb3a5592e1d5 Mon Sep 17 00:00:00 2001 From: Michel Pollet Date: Tue, 20 Apr 2010 17:42:35 +0100 Subject: [PATCH] MINI2440: Remove the extraneous PLL config at startup it's not needed, and in fact it screws up debugging anyway and causes hangs. Signed-off-by: Michel Pollet --- cpu/arm920t/start.S | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cpu/arm920t/start.S b/cpu/arm920t/start.S index ad2d7034..d1000268 100644 --- a/cpu/arm920t/start.S +++ b/cpu/arm920t/start.S @@ -296,8 +296,9 @@ copyex: str r1, [r0] #endif - #else /* i.e. 2440, 2410 and 2440 */ + +#ifndef CONFIG_MINI2440 /* cpu_init_crit is called right afterward */ #define LOCKTIME 0x4c000000 #define UPLLCON 0x4c000008 @@ -351,6 +352,7 @@ copyex: mov r1, #0x1a str r1, [r0, #0x28] #endif +#endif /* ! CONFIG_MINI2440 */ #endif /* CONFIG_S3C2400 || CONFIG_S3C2410 || CONFIG_S3C2440 || CONFIG_S3C2442 CONFIG_S3C2443 */ -- 2.11.4.GIT