diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 19:32:40 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 19:32:40 +0100 |
commit | 4ee1303a787434d4994ae68d028ca025e339b434 (patch) | |
tree | 66257cd009cffbed390c89c24ecd550134ad713a | |
parent | b4f8c4230708711c3b12c095cf6a59e6d06a183d (diff) | |
download | kernel_samsung_smdk4412-4ee1303a787434d4994ae68d028ca025e339b434.zip kernel_samsung_smdk4412-4ee1303a787434d4994ae68d028ca025e339b434.tar.gz kernel_samsung_smdk4412-4ee1303a787434d4994ae68d028ca025e339b434.tar.bz2 |
2.6.14-rc1 updates for MIPS compat types.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | include/asm-mips/compat.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/asm-mips/compat.h b/include/asm-mips/compat.h index 2c084cd..35d2604 100644 --- a/include/asm-mips/compat.h +++ b/include/asm-mips/compat.h @@ -15,10 +15,10 @@ typedef s32 compat_clock_t; typedef s32 compat_suseconds_t; typedef s32 compat_pid_t; -typedef u32 __compat_uid_t; -typedef u32 __compat_gid_t; -typedef u32 __compat_uid32_t; -typedef u32 __compat_gid32_t; +typedef s32 __compat_uid_t; +typedef s32 __compat_gid_t; +typedef __compat_uid_t __compat_uid32_t; +typedef __compat_gid_t __compat_gid32_t; typedef u32 compat_mode_t; typedef u32 compat_ino_t; typedef u32 compat_dev_t; @@ -54,8 +54,8 @@ struct compat_stat { compat_ino_t st_ino; compat_mode_t st_mode; compat_nlink_t st_nlink; - __compat_uid32_t st_uid; - __compat_gid32_t st_gid; + __compat_uid_t st_uid; + __compat_gid_t st_gid; compat_dev_t st_rdev; s32 st_pad2[2]; compat_off_t st_size; |