Commit 17dfaa02 authored by Ganesh Varadarajan's avatar Ganesh Varadarajan Committed by Greg Kroah-Hartman

[PATCH] USB: fix for ipaq.c

as per pete and greg's input, fixing only the uninitialized variable.
Signed-off-by: default avatarGanesh Varadarajan <ganesh@veritas.com>
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 7cda1ad0
......@@ -188,6 +188,7 @@ static int ipaq_open(struct usb_serial_port *port, struct file *filp)
usb_set_serial_port_data(port, priv);
priv->active = 0;
priv->queue_len = 0;
priv->free_len = 0;
INIT_LIST_HEAD(&priv->queue);
INIT_LIST_HEAD(&priv->freelist);
......
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