bl30: AO PIC claim and complete consistency for rtos_sdk [1/2]

PD#SWPL-94767

Problem:
For old N205 AOCPU, whose interrupt control unit is PIC,
need to ensure consistency of the interrupt claim and
complete times, which might cause abnormal interrupt
status.

Solution:
Delete C complete function. Since it will complete in
the assembly instructions, it is redundant.
Delete restriction of complete in clearpending to ensure
one claim and one complete, even if the result of claim
is 0.

Verify:
Local test pass.

Signed-off-by: bangzheng.liu <bangzheng.liu@amlogic.com>
Change-Id: Ib0c5c9a870220193fc4eb5e5c4c9359b8db2a763
diff --git a/handlers.c b/handlers.c
index 92dfb32..2944830 100644
--- a/handlers.c
+++ b/handlers.c
@@ -47,7 +47,8 @@
 	//set_csr(mstatus, MSTATUS_MIE);
 
 	pic_interrupt_handlers[int_num]();
-	pic_complete_interrupt(int_num);
+	/* Since it will complete in the assembly instructions, it is redundant in this place. */
+	//pic_complete_interrupt(int_num);
 	// Disable interrupts
 	//clear_csr(mstatus, MSTATUS_MIE);
 	return int_num;