From ff02f94e2d3a1e96ffc1918abd06e09ddd11fd06 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 7 Aug 2012 19:19:21 -0400 Subject: fix another mips gratuitous-incompatibility bug: ioctl numbers --- arch/mips/bits/ioctl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/mips') diff --git a/arch/mips/bits/ioctl.h b/arch/mips/bits/ioctl.h index c86488d8..3d60c1a9 100644 --- a/arch/mips/bits/ioctl.h +++ b/arch/mips/bits/ioctl.h @@ -1,7 +1,7 @@ #define _IOC(a,b,c,d) ( ((a)<<29) | ((b)<<8) | (c) | ((d)<<16) ) #define _IOC_NONE 1U -#define _IOC_WRITE 2U -#define _IOC_READ 4U +#define _IOC_READ 2U +#define _IOC_WRITE 4U #define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0) #define _IOW(a,b,c) _IOC(1,(a),(b),sizeof(c)) -- cgit v1.2.1