mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-22 12:08:02 +08:00
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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user