summary refs log tree commit diff stats
path: root/linux-user/mips64/syscall.h
diff options
context:
space:
mode:
Diffstat (limited to 'linux-user/mips64/syscall.h')
-rw-r--r--linux-user/mips64/syscall.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/linux-user/mips64/syscall.h b/linux-user/mips64/syscall.h
index e436ea57dc..cd707df32f 100644
--- a/linux-user/mips64/syscall.h
+++ b/linux-user/mips64/syscall.h
@@ -3,16 +3,16 @@
    stack during a system call. */
 
 struct target_pt_regs {
-	/* Saved main processor registers. */
-	abi_ulong regs[32];
+        /* Saved main processor registers. */
+        target_ulong regs[32];
 
-	/* Saved special registers. */
-	abi_ulong cp0_status;
-	abi_ulong lo;
-	abi_ulong hi;
-	abi_ulong cp0_badvaddr;
-	abi_ulong cp0_cause;
-	abi_ulong cp0_epc;
+        /* Saved special registers. */
+        target_ulong cp0_status;
+        target_ulong lo;
+        target_ulong hi;
+        target_ulong cp0_badvaddr;
+        target_ulong cp0_cause;
+        target_ulong cp0_epc;
 };
 
 /* Target errno definitions taken from asm-mips/errno.h */