From 8ff592e6cde88e2fb75a41bb609d9e51a9595092 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Mon, 15 Jul 2013 04:27:28 +0000 Subject: [PATCH] fixed SLT signedness --- sources/sysinit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/sysinit.c b/sources/sysinit.c index 9622aa7..239bcca 100644 --- a/sources/sysinit.c +++ b/sources/sysinit.c @@ -359,7 +359,7 @@ void init_fbcs() void wait_pll(void) { - uint32_t trgt = MCF_SLT0_SCNT - 100000; + int32_t trgt = MCF_SLT0_SCNT - 100000; do { ;