CRIS: Correct first argument to upeek()

This complements commit ea0e6e80260d2b1b7ad40282012b0e47869bcddf.
* syscall.c [CRISV10 || CRISV32] (syscall_fixup, syscall_enter): Pass
tcp pointer instead of pid to upeek().
* util.c [CRISV10 || CRISV32] (printcall): Likewise.

Signed-off-by: Edgar E. Iglesias <edgar@axis.com>
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
diff --git a/util.c b/util.c
index f41b0c3..c767065 100644
--- a/util.c
+++ b/util.c
@@ -1362,7 +1362,7 @@
 #elif defined(CRISV10)
 	long pc;
 
-	if (upeek(tcp->pid, 4*PT_IRP, &pc) < 0) {
+	if (upeek(tcp, 4*PT_IRP, &pc) < 0) {
 		PRINTBADPC;
 		return;
 	}
@@ -1370,7 +1370,7 @@
 #elif defined(CRISV32)
 	long pc;
 
-	if (upeek(tcp->pid, 4*PT_ERP, &pc) < 0) {
+	if (upeek(tcp, 4*PT_ERP, &pc) < 0) {
 		PRINTBADPC;
 		return;
 	}