aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-09-13 15:39:19 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-09-13 15:39:19 +0000
commitdb46ee952bdf71ee039adf1bcf549968763f7a40 (patch)
treedf9e5fdfb8e5428fbf32608b1ae55d659bc4519a /os/ports
parent0ea5ea89103bc47efb5b051465d567cbbe88088b (diff)
downloadChibiOS-db46ee952bdf71ee039adf1bcf549968763f7a40.tar.gz
ChibiOS-db46ee952bdf71ee039adf1bcf549968763f7a40.tar.bz2
ChibiOS-db46ee952bdf71ee039adf1bcf549968763f7a40.zip
Removed unnecessary cast.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1165 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports')
-rw-r--r--os/ports/GCC/ARMCM3/chcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/ports/GCC/ARMCM3/chcore.c b/os/ports/GCC/ARMCM3/chcore.c
index bf7dd3f15..fbf201a56 100644
--- a/os/ports/GCC/ARMCM3/chcore.c
+++ b/os/ports/GCC/ARMCM3/chcore.c
@@ -156,7 +156,7 @@ void PendSVVector(void) {
PUSH_CONTEXT(sp_thd);
(otp = currp)->p_ctx.r13 = sp_thd;
- (currp = fifo_remove((void *)&rlist.r_queue))->p_state = PRCURR;
+ (currp = fifo_remove(&rlist.r_queue))->p_state = PRCURR;
chSchReadyI(otp);
#if CH_USE_ROUNDROBIN
/* set the round-robin time quantum */