Commit e7246c49 authored by David S. Miller's avatar David S. Miller

Sparc64:

- sed s/__TIOC{START,STOP}/TIOC{START,STOP}/, kill SunOS specific comment
- Make ioctl32 recognize TIOCSTOP too.
parent e63a1b27
......@@ -3910,6 +3910,7 @@ COMPATIBLE_IOCTL(TCSETSW)
COMPATIBLE_IOCTL(TCSETSF)
COMPATIBLE_IOCTL(TIOCLINUX)
COMPATIBLE_IOCTL(TIOCSTART)
COMPATIBLE_IOCTL(TIOCSTOP)
/* Little t */
COMPATIBLE_IOCTL(TIOCGETD)
COMPATIBLE_IOCTL(TIOCSETD)
......
......@@ -51,8 +51,8 @@
#define TIOCMBIC _IOW('t', 107, int)
#define TIOCMBIS _IOW('t', 108, int)
#define TIOCMSET _IOW('t', 109, int)
#define __TIOCSTART _IO('t', 110) /* SunOS Specific */
#define __TIOCSTOP _IO('t', 111) /* SunOS Specific */
#define TIOCSTART _IO('t', 110)
#define TIOCSTOP _IO('t', 111)
#define TIOCPKT _IOW('t', 112, int)
#define TIOCNOTTY _IO('t', 113)
#define TIOCSTI _IOW('t', 114, char)
......
......@@ -52,8 +52,8 @@
#define TIOCMBIC _IOW('t', 107, int)
#define TIOCMBIS _IOW('t', 108, int)
#define TIOCMSET _IOW('t', 109, int)
#define __TIOCSTART _IO('t', 110) /* SunOS Specific */
#define __TIOCSTOP _IO('t', 111) /* SunOS Specific */
#define TIOCSTART _IO('t', 110)
#define TIOCSTOP _IO('t', 111)
#define TIOCPKT _IOW('t', 112, int)
#define TIOCNOTTY _IO('t', 113)
#define TIOCSTI _IOW('t', 114, char)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment