From 04c83e68c1e63731a87dd6355c14af0d58dfa0dd 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 --- BaS_gcc/sources/sysinit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaS_gcc/sources/sysinit.c b/BaS_gcc/sources/sysinit.c index 5574d69..7306441 100644 --- a/BaS_gcc/sources/sysinit.c +++ b/BaS_gcc/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);