aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-06-18 07:39:12 -0400
committerRalf Baechle <ralf@linux-mips.org>2013-07-01 09:10:53 -0400
commit5a772eee5544f4f84139868f7cd05806b805610d (patch)
tree2b7475cfb66ef409eda3703e14f77a387ca49aa8 /arch
parenta932fec84c633a5123b7d449a0588018678684cb (diff)
MIPS: fcntl.h: Use __kernel_off_t, not off_t.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/include/uapi/asm/fcntl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/include/uapi/asm/fcntl.h b/arch/mips/include/uapi/asm/fcntl.h
index 07afa6fe1e44..314c79b76d2a 100644
--- a/arch/mips/include/uapi/asm/fcntl.h
+++ b/arch/mips/include/uapi/asm/fcntl.h
@@ -61,8 +61,8 @@
61struct flock { 61struct flock {
62 short l_type; 62 short l_type;
63 short l_whence; 63 short l_whence;
64 off_t l_start; 64 __kernel_off_t l_start;
65 off_t l_len; 65 __kernel_off_t l_len;
66 long l_sysid; 66 long l_sysid;
67 __kernel_pid_t l_pid; 67 __kernel_pid_t l_pid;
68 long pad[4]; 68 long pad[4];