summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-01-26 10:29:28 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-01-26 10:30:33 +0100
commitaddb6000f8d446acc0dc3a3b111993f197c497bd (patch)
treeefc8a6344e0d2a8ef713a8c4aba969b60731993c
parentmpci: Update due to API changes (diff)
downloadrtems-addb6000f8d446acc0dc3a3b111993f197c497bd.tar.bz2
mpci: Fix warning
Assignment is superfluous due to later call to _Thread_queue_Enqueue().
-rw-r--r--cpukit/score/src/mpci.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpukit/score/src/mpci.c b/cpukit/score/src/mpci.c
index 3a63efba91..5944da3a97 100644
--- a/cpukit/score/src/mpci.c
+++ b/cpukit/score/src/mpci.c
@@ -201,8 +201,6 @@ uint32_t _MPCI_Send_request_packet (
executing->Wait.id = the_packet->id;
- executing->Wait.queue = &_MPCI_Remote_blocked_threads;
-
_Thread_Disable_dispatch();
(*_MPCI_table->send_packet)( destination, the_packet );