Cleanup for GCC-4.x
This commit is contained in:
@@ -78,9 +78,9 @@ static inline short inw(long addr)
|
||||
|
||||
static inline void *memcpy(void *dst, const void *src, unsigned int len)
|
||||
{
|
||||
void * ret = dst;
|
||||
while (len-- > 0) *((char *)dst)++ = *((char *)src)++;
|
||||
return ret;
|
||||
char *ret = dst;
|
||||
while (len-- > 0) *(ret)++ = *((char *)src)++;
|
||||
return (void *)ret;
|
||||
}
|
||||
|
||||
/* The EEPROM commands include the alway-set leading bit. */
|
||||
|
||||
@@ -292,7 +292,7 @@ static int thread_start (int id)
|
||||
current_tid = id;
|
||||
PDEBUG ("thread_start: to be stack=0%08x",
|
||||
(unsigned)lthreads[id].stack);
|
||||
setctxsp (<hreads[id].stack[STK_SIZE]);
|
||||
setctxsp ((vu_char *)<hreads[id].stack[STK_SIZE]);
|
||||
thread_launcher ();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user