Commit 4ee1303a787434d4994ae68d028ca025e339b434

Authored by Ralf Baechle
1 parent b4f8c42307

2.6.14-rc1 updates for MIPS compat types.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

Showing 1 changed file with 6 additions and 6 deletions Side-by-side Diff

include/asm-mips/compat.h
... ... @@ -15,10 +15,10 @@
15 15 typedef s32 compat_suseconds_t;
16 16  
17 17 typedef s32 compat_pid_t;
18   -typedef u32 __compat_uid_t;
19   -typedef u32 __compat_gid_t;
20   -typedef u32 __compat_uid32_t;
21   -typedef u32 __compat_gid32_t;
  18 +typedef s32 __compat_uid_t;
  19 +typedef s32 __compat_gid_t;
  20 +typedef __compat_uid_t __compat_uid32_t;
  21 +typedef __compat_gid_t __compat_gid32_t;
22 22 typedef u32 compat_mode_t;
23 23 typedef u32 compat_ino_t;
24 24 typedef u32 compat_dev_t;
... ... @@ -54,8 +54,8 @@
54 54 compat_ino_t st_ino;
55 55 compat_mode_t st_mode;
56 56 compat_nlink_t st_nlink;
57   - __compat_uid32_t st_uid;
58   - __compat_gid32_t st_gid;
  57 + __compat_uid_t st_uid;
  58 + __compat_gid_t st_gid;
59 59 compat_dev_t st_rdev;
60 60 s32 st_pad2[2];
61 61 compat_off_t st_size;