aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/tablet/kbtab.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input/tablet/kbtab.c')
-rw-r--r--drivers/input/tablet/kbtab.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/input/tablet/kbtab.c b/drivers/input/tablet/kbtab.c
index be717d758cb2..a39d1761a6cb 100644
--- a/drivers/input/tablet/kbtab.c
+++ b/drivers/input/tablet/kbtab.c
@@ -53,10 +53,12 @@ static void kbtab_irq(struct urb *urb)
53 case -ENOENT: 53 case -ENOENT:
54 case -ESHUTDOWN: 54 case -ESHUTDOWN:
55 /* this urb is terminated, clean up */ 55 /* this urb is terminated, clean up */
56 dbg("%s - urb shutting down with status: %d", __func__, urb->status); 56 dev_dbg(&dev->dev, "%s - urb shutting down with status: %d\n",
57 __func__, urb->status);
57 return; 58 return;
58 default: 59 default:
59 dbg("%s - nonzero urb status received: %d", __func__, urb->status); 60 dev_dbg(&dev->dev, "%s - nonzero urb status received: %d\n",
61 __func__, urb->status);
60 goto exit; 62 goto exit;
61 } 63 }
62 64