forked from Imagelibrary/rtems
2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* network/smsc9218i.c, 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>
|
||||
|
||||
* network/smsc9218i.c, 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.
|
||||
|
||||
@@ -920,7 +920,7 @@ static void smsc9218i_transmit_create_jobs(
|
||||
data_length
|
||||
);
|
||||
|
||||
asm volatile ( "sync");
|
||||
__asm__ volatile ( "sync");
|
||||
|
||||
/* Remember fragement */
|
||||
jc->fragment_table [c] = m;
|
||||
|
||||
@@ -547,7 +547,7 @@ static void mpc55xx_ebi_init(void)
|
||||
PPC_SET_SPECIAL_PURPOSE_REGISTER( FSL_EIS_MAS1, mmu_setup[i].MAS1.R);
|
||||
PPC_SET_SPECIAL_PURPOSE_REGISTER( FSL_EIS_MAS2, mmu_setup[i].MAS2.R);
|
||||
PPC_SET_SPECIAL_PURPOSE_REGISTER( FSL_EIS_MAS3, mmu_setup[i].MAS3.R);
|
||||
asm volatile ("tlbwe");
|
||||
__asm__ volatile ("tlbwe");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user