Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 185225
b: refs/heads/master
c: 8c4f99c
h: refs/heads/master
i:
  185223: 4d8cfec
v: v3
  • Loading branch information
Johan Hovold authored and Greg Kroah-Hartman committed Mar 2, 2010
1 parent 8608a86 commit a0df42b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b4fc2aeef23b4b35809054ddf495f9efdc3ac9d6
refs/heads/master: 8c4f99cd54469d643e27a743045da848f7b63fe5
9 changes: 5 additions & 4 deletions trunk/drivers/usb/serial/ftdi_sio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1184,7 +1184,6 @@ static int read_latency_timer(struct usb_serial_port *port)
unsigned short latency = 0;
int rv = 0;


dbg("%s", __func__);

rv = usb_control_msg(udev,
Expand All @@ -1197,8 +1196,9 @@ static int read_latency_timer(struct usb_serial_port *port)
if (rv < 0) {
dev_err(&port->dev, "Unable to read latency timer: %i\n", rv);
return -EIO;
}
return latency;
} else
priv->latency = latency;
return rv;
}

static int get_serial_info(struct usb_serial_port *port,
Expand Down Expand Up @@ -1584,7 +1584,8 @@ static int ftdi_sio_port_probe(struct usb_serial_port *port)

ftdi_determine_type(port);
ftdi_set_max_packet_size(port);
read_latency_timer(port);
if (read_latency_timer(port) < 0)
priv->latency = 16;
create_sysfs_attrs(port);
return 0;
}
Expand Down

0 comments on commit a0df42b

Please sign in to comment.