hso: fixed missing newlines

Fixed missing newlines in calls to dev_warn & dev_err.

Signed-off-by: Jan Dumon <j.dumon@option.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jan Dumon 2010-01-05 04:53:00 +00:00 committed by David S. Miller
parent 0e0367e980
commit 8a5c9c4932

View file

@ -828,7 +828,7 @@ static netdev_tx_t hso_net_start_xmit(struct sk_buff *skb,
result = usb_submit_urb(odev->mux_bulk_tx_urb, GFP_ATOMIC); result = usb_submit_urb(odev->mux_bulk_tx_urb, GFP_ATOMIC);
if (result) { if (result) {
dev_warn(&odev->parent->interface->dev, dev_warn(&odev->parent->interface->dev,
"failed mux_bulk_tx_urb %d", result); "failed mux_bulk_tx_urb %d\n", result);
net->stats.tx_errors++; net->stats.tx_errors++;
netif_start_queue(net); netif_start_queue(net);
} else { } else {
@ -1076,7 +1076,7 @@ static void read_bulk_callback(struct urb *urb)
result = usb_submit_urb(urb, GFP_ATOMIC); result = usb_submit_urb(urb, GFP_ATOMIC);
if (result) if (result)
dev_warn(&odev->parent->interface->dev, dev_warn(&odev->parent->interface->dev,
"%s failed submit mux_bulk_rx_urb %d", __func__, "%s failed submit mux_bulk_rx_urb %d\n", __func__,
result); result);
} }
@ -1865,7 +1865,7 @@ static int mux_device_request(struct hso_serial *serial, u8 type, u16 port,
result = usb_submit_urb(ctrl_urb, GFP_ATOMIC); result = usb_submit_urb(ctrl_urb, GFP_ATOMIC);
if (result) { if (result) {
dev_err(&ctrl_urb->dev->dev, dev_err(&ctrl_urb->dev->dev,
"%s failed submit ctrl_urb %d type %d", __func__, "%s failed submit ctrl_urb %d type %d\n", __func__,
result, type); result, type);
return result; return result;
} }
@ -2385,12 +2385,12 @@ static int hso_serial_common_create(struct hso_serial *serial, int num_urbs,
serial->tx_data_length = tx_size; serial->tx_data_length = tx_size;
serial->tx_data = kzalloc(serial->tx_data_length, GFP_KERNEL); serial->tx_data = kzalloc(serial->tx_data_length, GFP_KERNEL);
if (!serial->tx_data) { if (!serial->tx_data) {
dev_err(dev, "%s - Out of memory", __func__); dev_err(dev, "%s - Out of memory\n", __func__);
goto exit; goto exit;
} }
serial->tx_buffer = kzalloc(serial->tx_data_length, GFP_KERNEL); serial->tx_buffer = kzalloc(serial->tx_data_length, GFP_KERNEL);
if (!serial->tx_buffer) { if (!serial->tx_buffer) {
dev_err(dev, "%s - Out of memory", __func__); dev_err(dev, "%s - Out of memory\n", __func__);
goto exit; goto exit;
} }
@ -2859,14 +2859,14 @@ struct hso_shared_int *hso_create_shared_int(struct usb_interface *interface)
mux->shared_intr_urb = usb_alloc_urb(0, GFP_KERNEL); mux->shared_intr_urb = usb_alloc_urb(0, GFP_KERNEL);
if (!mux->shared_intr_urb) { if (!mux->shared_intr_urb) {
dev_err(&interface->dev, "Could not allocate intr urb?"); dev_err(&interface->dev, "Could not allocate intr urb?\n");
goto exit; goto exit;
} }
mux->shared_intr_buf = mux->shared_intr_buf =
kzalloc(le16_to_cpu(mux->intr_endp->wMaxPacketSize), kzalloc(le16_to_cpu(mux->intr_endp->wMaxPacketSize),
GFP_KERNEL); GFP_KERNEL);
if (!mux->shared_intr_buf) { if (!mux->shared_intr_buf) {
dev_err(&interface->dev, "Could not allocate intr buf?"); dev_err(&interface->dev, "Could not allocate intr buf?\n");
goto exit; goto exit;
} }
@ -3287,7 +3287,7 @@ static int hso_mux_submit_intr_urb(struct hso_shared_int *shared_int,
result = usb_submit_urb(shared_int->shared_intr_urb, gfp); result = usb_submit_urb(shared_int->shared_intr_urb, gfp);
if (result) if (result)
dev_warn(&usb->dev, "%s failed mux_intr_urb %d", __func__, dev_warn(&usb->dev, "%s failed mux_intr_urb %d\n", __func__,
result); result);
return result; return result;