mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 04:32:03 +00:00
USB: serial: keyspan: fix up some compiler warnings
I accidentally caused some compiler warnings, that were correct in pointing out problems, so fix them up now. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
049c6b4e8f
commit
7ebcb33443
@ -2474,14 +2474,12 @@ static int keyspan_startup(struct usb_serial *serial)
|
||||
if (s_priv->instat_urb != NULL) {
|
||||
err = usb_submit_urb(s_priv->instat_urb, GFP_KERNEL);
|
||||
if (err != 0)
|
||||
dev_dbg(&port->dev, "%s - submit instat urb failed %d\n", __func__,
|
||||
err);
|
||||
dev_dbg(&serial->dev->dev, "%s - submit instat urb failed %d\n", __func__, err);
|
||||
}
|
||||
if (s_priv->indat_urb != NULL) {
|
||||
err = usb_submit_urb(s_priv->indat_urb, GFP_KERNEL);
|
||||
if (err != 0)
|
||||
dev_dbg(&port->dev, "%s - submit indat urb failed %d\n", __func__,
|
||||
err);
|
||||
dev_dbg(&serial->dev->dev, "%s - submit indat urb failed %d\n", __func__, err);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user