summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRussell King <rmk@flint.arm.linux.org.uk>2002-10-16 17:36:34 +0100
committerRussell King <rmk@flint.arm.linux.org.uk>2002-10-16 17:36:34 +0100
commit31aa6e2b5e2b94f15fc221715fcabe2d334a5510 (patch)
tree32ebe6d13ed6fc512eea44b9a7fc6a1403d32636 /include
parentf5ffbe23fa7c65ec9515fad967b1130891558b27 (diff)
[SERIAL] Fix missing parens in serial_core.h
Diffstat (limited to 'include')
-rw-r--r--include/linux/serial_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h
index c38330747ee1..ecba24e3d875 100644
--- a/include/linux/serial_core.h
+++ b/include/linux/serial_core.h
@@ -396,6 +396,6 @@ uart_handle_cts_change(struct uart_port *port, unsigned int status)
*/
#define UART_ENABLE_MS(port,cflag) ((port)->flags & UPF_HARDPPS_CD || \
(cflag) & CRTSCTS || \
- !(cflag) & CLOCAL)
+ !((cflag) & CLOCAL))
#endif