diff options
author | Johan Hovold <johan@kernel.org> | 2017-01-25 18:22:54 +0100 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2017-01-26 09:49:13 +0100 |
commit | 51211a3d9b59b5c00f81512c2a16d9f3f607c0d9 (patch) | |
tree | a6043f7e74b2f4fe33692660df2235fd030b324d /drivers/usb/serial/io_edgeport.c | |
parent | 59556608139edda5aeeed5f73e435e8ddbb16516 (diff) |
USB: serial: drop unused ASYNC flags
Do not report ASYNC_SKIP_TEST or ASYNC_AUTO_IRQ as being set in
TIOCGSERIAL handlers as these flags are not supported and do not really
make any sense for USB serial devices in the first place.
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial/io_edgeport.c')
-rw-r--r-- | drivers/usb/serial/io_edgeport.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/serial/io_edgeport.c b/drivers/usb/serial/io_edgeport.c index 8ab5f5b49ef3..92abf92e5669 100644 --- a/drivers/usb/serial/io_edgeport.c +++ b/drivers/usb/serial/io_edgeport.c @@ -1572,7 +1572,6 @@ static int get_serial_info(struct edgeport_port *edge_port, tmp.line = edge_port->port->minor; tmp.port = edge_port->port->port_number; tmp.irq = 0; - tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ; tmp.xmit_fifo_size = edge_port->maxTxCredits; tmp.baud_base = 9600; tmp.close_delay = 5*HZ; |