diff options
| author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-10-30 03:20:56 -0400 |
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-10-30 03:20:56 -0400 |
| commit | 53279f36dccffc26ff536003fd6bb97cc21c3b82 (patch) | |
| tree | 9d16e497c0e4158c7c054c479bd0e9ff0388d7bb /include/uapi/linux/termios.h | |
| parent | a6e8c0a25377e27958b11b20e1927885ae7c9857 (diff) | |
| parent | 8f0d8163b50e01f398b14bcd4dc039ac5ab18d64 (diff) | |
Merge tag 'v3.7-rc3' into next to sync up with recent USB and MFD changes
Diffstat (limited to 'include/uapi/linux/termios.h')
| -rw-r--r-- | include/uapi/linux/termios.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/uapi/linux/termios.h b/include/uapi/linux/termios.h new file mode 100644 index 000000000000..2acd0c1f8a2a --- /dev/null +++ b/include/uapi/linux/termios.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | #ifndef _LINUX_TERMIOS_H | ||
| 2 | #define _LINUX_TERMIOS_H | ||
| 3 | |||
| 4 | #include <linux/types.h> | ||
| 5 | #include <asm/termios.h> | ||
| 6 | |||
| 7 | #define NFF 5 | ||
| 8 | |||
| 9 | struct termiox | ||
| 10 | { | ||
| 11 | __u16 x_hflag; | ||
| 12 | __u16 x_cflag; | ||
| 13 | __u16 x_rflag[NFF]; | ||
| 14 | __u16 x_sflag; | ||
| 15 | }; | ||
| 16 | |||
| 17 | #define RTSXOFF 0x0001 /* RTS flow control on input */ | ||
| 18 | #define CTSXON 0x0002 /* CTS flow control on output */ | ||
| 19 | #define DTRXOFF 0x0004 /* DTR flow control on input */ | ||
| 20 | #define DSRXON 0x0008 /* DCD flow control on output */ | ||
| 21 | |||
| 22 | #endif | ||
