Remove references to multi-node systems in movedata.c

Multi-node systems are not supported.

Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
Change-Id: If16ffde2bf18d8729bc7d16e558db146b042bb36
This commit is contained in:
Peter Mitsis 2015-04-20 16:07:26 -04:00 committed by Anas Nashif
parent 6f39a8d627
commit 3b70db2da3

View file

@ -43,7 +43,7 @@
/* forward declarations */
static void mvdreq_LILC(struct moved_req *ReqArgs);
static void mvdreq_copy(struct moved_req *ReqArgs);
static void mvdreq_docont(struct k_args *Cont);
@ -83,19 +83,17 @@ void K_mvdreq(struct k_args *Req)
return;
}
/* local memcpy? :
*/
mvdreq_LILC(ReqArgs);
mvdreq_copy(ReqArgs);
}
/*******************************************************************************
*
* mvdreq_LILC - locally initiated, locally copied movedata request
* mvdreq_copy - perform movedata request
*
* RETURNS: N/A
*/
static void mvdreq_LILC(struct moved_req *ReqArgs)
static void mvdreq_copy(struct moved_req *ReqArgs)
{
k_memcpy_s(ReqArgs->destination,
OCTET_TO_SIZEOFUNIT(ReqArgs->iTotalSize),