2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>

* startup/bspstart.c:
	Use "__asm__" instead of "asm" for improved c99-compliance.
This commit is contained in:
Ralf Corsepius
2011-02-11 11:42:31 +00:00
parent bd8cd7561b
commit cf1d6674cb
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* startup/bspstart.c:
Use "__asm__" instead of "asm" for improved c99-compliance.
2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Require autoconf-2.68, automake-1.11.1.
@@ -44,7 +44,7 @@ void bsp_start_default( void )
/* Delay to allow time for PLL to get going */
for (i = 0; i < 100; i++) {
asm volatile ("nop\n");
__asm__ volatile ("nop\n");
}
/* Set the CPU to asynchrous clock mode, so it uses its fastest clock */