diff options
author | Andrew Lunn <andrew@lunn.ch> | 2013-12-29 13:23:16 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-03 15:32:32 -0500 |
commit | e58b57a354cade526266f60d3d936eed7c421c90 (patch) | |
tree | 4df861198ed06a031e4dd6b2559a828f55302ff7 /include/linux/tty.h | |
parent | 5d85045f4b082800beb384094fc67fa0d2096563 (diff) |
tty: Add C_CMSPAR(tty)
Add the missing C_CMSPAR(tty) macro.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/tty.h')
-rw-r--r-- | include/linux/tty.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index 97d660ed70c1..e53e90ed3f19 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
@@ -137,6 +137,7 @@ struct tty_bufhead { | |||
137 | #define C_CLOCAL(tty) _C_FLAG((tty), CLOCAL) | 137 | #define C_CLOCAL(tty) _C_FLAG((tty), CLOCAL) |
138 | #define C_CIBAUD(tty) _C_FLAG((tty), CIBAUD) | 138 | #define C_CIBAUD(tty) _C_FLAG((tty), CIBAUD) |
139 | #define C_CRTSCTS(tty) _C_FLAG((tty), CRTSCTS) | 139 | #define C_CRTSCTS(tty) _C_FLAG((tty), CRTSCTS) |
140 | #define C_CMSPAR(tty) _C_FLAG((tty), CMSPAR) | ||
140 | 141 | ||
141 | #define L_ISIG(tty) _L_FLAG((tty), ISIG) | 142 | #define L_ISIG(tty) _L_FLAG((tty), ISIG) |
142 | #define L_ICANON(tty) _L_FLAG((tty), ICANON) | 143 | #define L_ICANON(tty) _L_FLAG((tty), ICANON) |