Browse Source

fix TIOCMSET in mips ioctl.h

it seems it was a typo.
Szabolcs Nagy 8 years ago
parent
commit
809495f7b7
3 changed files with 3 additions and 3 deletions
  1. 1 1
      arch/mips/bits/ioctl.h
  2. 1 1
      arch/mips64/bits/ioctl.h
  3. 1 1
      arch/mipsn32/bits/ioctl.h

+ 1 - 1
arch/mips/bits/ioctl.h

@@ -27,7 +27,7 @@
 #define TIOCMGET	0x741D
 #define TIOCMBIS	0x741B
 #define TIOCMBIC	0x741C
-#define TIOCMSET	0x741D
+#define TIOCMSET	0x741A
 
 #define TIOCPKT		0x5470
 #define TIOCSWINSZ	_IOW('t', 103, struct winsize)

+ 1 - 1
arch/mips64/bits/ioctl.h

@@ -27,7 +27,7 @@
 #define TIOCMGET	0x741D
 #define TIOCMBIS	0x741B
 #define TIOCMBIC	0x741C
-#define TIOCMSET	0x741D
+#define TIOCMSET	0x741A
 
 #define TIOCPKT		0x5470
 #define TIOCSWINSZ	_IOW('t', 103, struct winsize)

+ 1 - 1
arch/mipsn32/bits/ioctl.h

@@ -27,7 +27,7 @@
 #define TIOCMGET	0x741D
 #define TIOCMBIS	0x741B
 #define TIOCMBIC	0x741C
-#define TIOCMSET	0x741D
+#define TIOCMSET	0x741A
 
 #define TIOCPKT		0x5470
 #define TIOCSWINSZ	_IOW('t', 103, struct winsize)