From 327ac5d2a77f6f6a9729e609f9ffed03e47bb511 Mon Sep 17 00:00:00 2001 From: jmcmullan Date: Fri, 10 Aug 2012 05:05:31 +0000 Subject: [PATCH] chrp-ppc: Use AROS_UFIx() macros Signed-off-by: Jason S. McMullan git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@45497 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- arch/ppc-chrp/efika/kernel/scheduler.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/arch/ppc-chrp/efika/kernel/scheduler.c b/arch/ppc-chrp/efika/kernel/scheduler.c index a2a741a3bf..c5493af2a9 100644 --- a/arch/ppc-chrp/efika/kernel/scheduler.c +++ b/arch/ppc-chrp/efika/kernel/scheduler.c @@ -333,12 +333,6 @@ void core_Cause(struct ExecBase *SysBase) /* If the SoftInt vector in SysBase is set, call it. It will do the rest for us */ if (iv->iv_Code) { - AROS_UFC5(void, iv->iv_Code, - AROS_UFCA(ULONG, 0, D1), - AROS_UFCA(ULONG, 0, A0), - AROS_UFCA(APTR, 0, A1), - AROS_UFCA(APTR, iv->iv_Code, A5), - AROS_UFCA(struct ExecBase *, SysBase, A6) - ); + AROS_UFIC1(iv->iv_Code, iv->iv_Data); } } -- 2.11.4.GIT