projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aad3108
)
serial/sc16is7xx: Remove obsolete #ifset TIOC[SG]RS485
author
Ricardo Ribalda Delgado
<
[email protected]
>
Wed, 8 Oct 2014 19:57:28 +0000
(21:57 +0200)
committer
Greg Kroah-Hartman
<
[email protected]
>
Thu, 6 Nov 2014 03:29:05 +0000
(19:29 -0800)
Commit
e676253b19b2
("serial/8250: Add support for RS485 IOCTLs") added
references to TIOC[SG]RS48 on 8250_core.c. This change triggered the
need to define them in all the arches that uses tty/serial.
This made #ifdef TIOC[SG]RS48 obsolete.
Cc: Greg Kroah-Hartman <
[email protected]
>
Cc: Jiri Slaby <
[email protected]
>
Cc:
[email protected]
Cc:
[email protected]
Signed-off-by: Ricardo Ribalda Delgado <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
drivers/tty/serial/sc16is7xx.c
patch
|
blob
|
history
diff --git
a/drivers/tty/serial/sc16is7xx.c
b/drivers/tty/serial/sc16is7xx.c
index 6246820d7f059cc52f977997dc01b8a45c28a16b..7a7911384eca7c1156c79b5e645eafba710d859c 100644
(file)
--- a/
drivers/tty/serial/sc16is7xx.c
+++ b/
drivers/tty/serial/sc16is7xx.c
@@
-830,7
+830,6
@@
static void sc16is7xx_set_termios(struct uart_port *port,
uart_update_timeout(port, termios->c_cflag, baud);
}
-#if defined(TIOCSRS485) && defined(TIOCGRS485)
static void sc16is7xx_config_rs485(struct uart_port *port,
struct serial_rs485 *rs485)
{
@@
-848,12
+847,10
@@
static void sc16is7xx_config_rs485(struct uart_port *port,
0);
}
}
-#endif
static int sc16is7xx_ioctl(struct uart_port *port, unsigned int cmd,
unsigned long arg)
{
-#if defined(TIOCSRS485) && defined(TIOCGRS485)
struct serial_rs485 rs485;
switch (cmd) {
@@
-872,7
+869,6
@@
static int sc16is7xx_ioctl(struct uart_port *port, unsigned int cmd,
default:
break;
}
-#endif
return -ENOIOCTLCMD;
}