Commit e2cd017f authored by Johan Hovold's avatar Johan Hovold

USB: serial: symbolserial: simplify endpoint check

Simplify the endpoint sanity check by letting core verify that the
required endpoints are present.
Signed-off-by: default avatarJohan Hovold <johan@kernel.org>
parent bdd15443
...@@ -147,16 +147,6 @@ static void symbol_unthrottle(struct tty_struct *tty) ...@@ -147,16 +147,6 @@ static void symbol_unthrottle(struct tty_struct *tty)
} }
} }
static int symbol_startup(struct usb_serial *serial)
{
if (!serial->num_interrupt_in) {
dev_err(&serial->dev->dev, "no interrupt-in endpoint\n");
return -ENODEV;
}
return 0;
}
static int symbol_port_probe(struct usb_serial_port *port) static int symbol_port_probe(struct usb_serial_port *port)
{ {
struct symbol_private *priv; struct symbol_private *priv;
...@@ -188,7 +178,7 @@ static struct usb_serial_driver symbol_device = { ...@@ -188,7 +178,7 @@ static struct usb_serial_driver symbol_device = {
}, },
.id_table = id_table, .id_table = id_table,
.num_ports = 1, .num_ports = 1,
.attach = symbol_startup, .num_interrupt_in = 1,
.port_probe = symbol_port_probe, .port_probe = symbol_port_probe,
.port_remove = symbol_port_remove, .port_remove = symbol_port_remove,
.open = symbol_open, .open = symbol_open,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment