USB: serial: remove debug parameter from usb_serial_debug_data()
We should use dev_dbg() for usb_serial_debug_data() like all of the rest of the usb-serial drivers use, so remove the debug parameter as it's not needed. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -769,9 +769,8 @@ send:
|
||||
actual_size = count +
|
||||
(priv->pkt_fmt == packet_format_1 ? 2 : 1);
|
||||
|
||||
usb_serial_debug_data(debug, &port->dev, __func__,
|
||||
port->interrupt_out_size,
|
||||
port->interrupt_out_urb->transfer_buffer);
|
||||
usb_serial_debug_data(dev, __func__, port->interrupt_out_size,
|
||||
port->interrupt_out_urb->transfer_buffer);
|
||||
|
||||
usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev,
|
||||
usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
|
||||
@@ -1187,8 +1186,7 @@ static void cypress_read_int_callback(struct urb *urb)
|
||||
goto continue_read;
|
||||
}
|
||||
|
||||
usb_serial_debug_data(debug, &port->dev, __func__,
|
||||
urb->actual_length, data);
|
||||
usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
|
||||
|
||||
spin_lock_irqsave(&priv->lock, flags);
|
||||
/* check to see if status has changed */
|
||||
|
Reference in New Issue
Block a user