提交 189cd4d4 编写于 作者: J j_mayer

Fix for ISO C compliance:

 function qualifiers must always come before the return type.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3691 c046a42c-6fe2-441c-8c8c-71466251a162
上级 ec4ef316
......@@ -45,7 +45,7 @@ static inline void flush_icache_range(unsigned long start, unsigned long stop)
#define MIN_CACHE_LINE_SIZE 8 /* conservative value */
static void inline flush_icache_range(unsigned long start, unsigned long stop)
static inline void flush_icache_range(unsigned long start, unsigned long stop)
{
unsigned long p;
......@@ -68,7 +68,7 @@ static inline void flush_icache_range(unsigned long start, unsigned long stop)
asm ("imb");
}
#elif defined(__sparc__)
static void inline flush_icache_range(unsigned long start, unsigned long stop)
static inline void flush_icache_range(unsigned long start, unsigned long stop)
{
unsigned long p;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册