2008-07-10 Till Straumann <strauman@slac.stanford.edu>

* shared/flash/spansionFlash.c: removed "m" memory
	operands.
This commit is contained in:
Till Straumann
2008-07-10 23:24:58 +00:00
parent dfe42ba59c
commit 457f5901e6
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2008-07-10 Till Straumann <strauman@slac.stanford.edu>
* shared/flash/spansionFlash.c: removed "m" memory
operands.
2008-07-09 Sebastian Huber <sebastian.huber@embedded-brains.de>
* shared/clock/clock.c: Alternative clock driver. Uses exception handler

View File

@@ -77,7 +77,7 @@
/* Assume flash-endianness == CPU endianness */
#ifdef __PPC__
#define IOSYNC(mem) do { asm volatile("eieio":"=m"(mem):"m"(mem)); } while (0)
#define IOSYNC(mem) do { asm volatile("eieio"); } while (0)
#else
#define IOSYNC(mem) do { } while (0)
#endif