From bb5159cca4e0829f222138e089adfcad7648ebb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Wed, 28 Nov 2012 04:25:09 +0000 Subject: [PATCH] removed a few other volatile declarations --- sources/sysinit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/sysinit.c b/sources/sysinit.c index 5574d69..7306441 100644 --- a/sources/sysinit.c +++ b/sources/sysinit.c @@ -37,7 +37,7 @@ inline void wait(uint32_t us) * the same as above, with a checker function which gets called while * busy waiting and allows for an early return if it returns true */ -inline volatile bool waitfor(volatile uint32_t us, int (*condition)(void)) +inline bool waitfor(uint32_t us, int (*condition)(void)) { uint32_t target = MCF_SLT_SCNT(0) - (us * 132);