Commit 5e5b6444 authored by Johan Hovold's avatar Johan Hovold

USB: serial: opticon: 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 8ee1592d
...@@ -367,16 +367,6 @@ static int opticon_ioctl(struct tty_struct *tty, ...@@ -367,16 +367,6 @@ static int opticon_ioctl(struct tty_struct *tty,
return -ENOIOCTLCMD; return -ENOIOCTLCMD;
} }
static int opticon_startup(struct usb_serial *serial)
{
if (!serial->num_bulk_in) {
dev_err(&serial->dev->dev, "no bulk in endpoint\n");
return -ENODEV;
}
return 0;
}
static int opticon_port_probe(struct usb_serial_port *port) static int opticon_port_probe(struct usb_serial_port *port)
{ {
struct opticon_private *priv; struct opticon_private *priv;
...@@ -408,8 +398,8 @@ static struct usb_serial_driver opticon_device = { ...@@ -408,8 +398,8 @@ static struct usb_serial_driver opticon_device = {
}, },
.id_table = id_table, .id_table = id_table,
.num_ports = 1, .num_ports = 1,
.num_bulk_in = 1,
.bulk_in_size = 256, .bulk_in_size = 256,
.attach = opticon_startup,
.port_probe = opticon_port_probe, .port_probe = opticon_port_probe,
.port_remove = opticon_port_remove, .port_remove = opticon_port_remove,
.open = opticon_open, .open = opticon_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