aboutsummaryrefslogtreecommitdiffstats
path: root/ports
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-01-17 09:34:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-01-17 09:34:46 +0000
commit3e62617990c8fcea0649eacd6f769f4e544b920d (patch)
tree6c1ac8f7bd61bdc63186af8002d649857cb1140c /ports
parente8aefc848a06089e99abd665db850483907f95b6 (diff)
downloadChibiOS-3e62617990c8fcea0649eacd6f769f4e544b920d.tar.gz
ChibiOS-3e62617990c8fcea0649eacd6f769f4e544b920d.tar.bz2
ChibiOS-3e62617990c8fcea0649eacd6f769f4e544b920d.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@178 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports')
-rw-r--r--ports/ARM7-LPC214x/GCC/chcore.c2
-rw-r--r--ports/ARM7-LPC214x/GCC/chcore.h2
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);