diff options
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ARM7-LPC214x/GCC/chcore.c | 2 | ||||
-rw-r--r-- | ports/ARM7-LPC214x/GCC/chcore.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/ARM7-LPC214x/GCC/chcore.c b/ports/ARM7-LPC214x/GCC/chcore.c index d562a1527..88f041ddd 100644 --- a/ports/ARM7-LPC214x/GCC/chcore.c +++ b/ports/ARM7-LPC214x/GCC/chcore.c @@ -69,7 +69,7 @@ void chSysUnlock(void) { }
#endif
-void chSysSwitchI(struct Thread *otp, struct Thread *ntp) {
+void chSysSwitchI(Thread *otp, Thread *ntp) {
#ifdef THUMB
asm(".p2align 2,, \n\t" \
diff --git a/ports/ARM7-LPC214x/GCC/chcore.h b/ports/ARM7-LPC214x/GCC/chcore.h index 624386f15..75392b6b9 100644 --- a/ports/ARM7-LPC214x/GCC/chcore.h +++ b/ports/ARM7-LPC214x/GCC/chcore.h @@ -122,7 +122,7 @@ extern void chSysUnlock(void); void _IdleThread(void *p) __attribute__((noreturn));
void chSysHalt(void);
-void chSysSwitchI(struct Thread *otp, struct Thread *ntp);
+void chSysSwitchI(Thread *otp, Thread *ntp);
void chSysPuts(char *msg);
void threadstart(void);
|