Commit be2b8fc1 authored by Martin Kepplinger's avatar Martin Kepplinger Committed by Greg Kroah-Hartman

staging: winbond: use dev_err() instead of printk()

For obvious error messages, use dev_err() in order to provide userspace
with more useful information and use the common kernel coding style.
Signed-off-by: default avatarMartin Kepplinger <martink@posteo.de>
Acked-by: default avatarPavel Machek <pavel@ucw.cz>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a3c97192
...@@ -49,7 +49,7 @@ static void Wb35Tx_complete(struct urb *pUrb) ...@@ -49,7 +49,7 @@ static void Wb35Tx_complete(struct urb *pUrb)
/* The URB is completed, check the result */ /* The URB is completed, check the result */
if (pWb35Tx->EP4VM_status != 0) { if (pWb35Tx->EP4VM_status != 0) {
printk("URB submission failed\n"); dev_err(&pUrb->dev->dev, "URB submission failed\n");
pWb35Tx->EP4vm_state = VM_STOP; pWb35Tx->EP4vm_state = VM_STOP;
goto error; goto error;
} }
...@@ -96,7 +96,7 @@ static void Wb35Tx(struct wbsoft_priv *adapter) ...@@ -96,7 +96,7 @@ static void Wb35Tx(struct wbsoft_priv *adapter)
pWb35Tx->EP4vm_state = VM_RUNNING; pWb35Tx->EP4vm_state = VM_RUNNING;
retv = usb_submit_urb(pUrb, GFP_ATOMIC); retv = usb_submit_urb(pUrb, GFP_ATOMIC);
if (retv < 0) { if (retv < 0) {
printk("EP4 Tx Irp sending error\n"); dev_err(&pUrb->dev->dev, "EP4 Tx Irp sending error\n");
goto cleanup; goto cleanup;
} }
...@@ -218,7 +218,7 @@ static void Wb35Tx_EP2VM_complete(struct urb *pUrb) ...@@ -218,7 +218,7 @@ static void Wb35Tx_EP2VM_complete(struct urb *pUrb)
/* The Urb is completed, check the result */ /* The Urb is completed, check the result */
if (pWb35Tx->EP2VM_status != 0) { if (pWb35Tx->EP2VM_status != 0) {
printk("EP2 IoCompleteRoutine return error\n"); dev_err(&pUrb->dev->dev, "EP2 IoCompleteRoutine return error\n");
pWb35Tx->EP2vm_state = VM_STOP; pWb35Tx->EP2vm_state = VM_STOP;
goto error; goto error;
} }
......
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