Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303682
b: refs/heads/master
c: 3b6aee2
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed May 2, 2012
1 parent 742e9d1 commit 00f6528
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f864b60ad0078b74c765f00f0600588b85c0a239
refs/heads/master: 3b6aee237e889a189fd8c558207ca0e55818f744
10 changes: 6 additions & 4 deletions trunk/drivers/input/tablet/wacom_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ static int wacom_set_report(struct usb_interface *intf, u8 type, u8 id,
static void wacom_sys_irq(struct urb *urb)
{
struct wacom *wacom = urb->context;
struct device *dev = &wacom->wacom_wac.input->dev;
int retval;

switch (urb->status) {
Expand All @@ -109,10 +110,12 @@ static void wacom_sys_irq(struct urb *urb)
case -ENOENT:
case -ESHUTDOWN:
/* this urb is terminated, clean up */
dbg("%s - urb shutting down with status: %d", __func__, urb->status);
dev_dbg(dev, "%s - urb shutting down with status: %d\n",
__func__, urb->status);
return;
default:
dbg("%s - nonzero urb status received: %d", __func__, urb->status);
dev_dbg(dev, "%s - nonzero urb status received: %d\n",
__func__, urb->status);
goto exit;
}

Expand All @@ -122,8 +125,7 @@ static void wacom_sys_irq(struct urb *urb)
usb_mark_last_busy(wacom->usbdev);
retval = usb_submit_urb(urb, GFP_ATOMIC);
if (retval)
dev_err(&wacom->wacom_wac.input->dev,
"%s - usb_submit_urb failed with result %d\n",
dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
__func__, retval);
}

Expand Down
16 changes: 11 additions & 5 deletions trunk/drivers/input/tablet/wacom_wac.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ static int wacom_pl_irq(struct wacom_wac *wacom)
int prox, pressure;

if (data[0] != WACOM_REPORT_PENABLED) {
dbg("wacom_pl_irq: received unknown report #%d", data[0]);
dev_dbg(&input->dev,
"wacom_pl_irq: received unknown report #%d\n", data[0]);
return 0;
}

Expand Down Expand Up @@ -175,7 +176,7 @@ static int wacom_dtu_irq(struct wacom_wac *wacom)
struct input_dev *input = wacom->input;
int prox = data[1] & 0x20, pressure;

dbg("wacom_dtu_irq: received report #%d", data[0]);
dev_dbg(&input->dev, "wacom_dtu_irq: received report #%d\n", data[0]);

if (prox) {
/* Going into proximity select tool */
Expand Down Expand Up @@ -211,7 +212,9 @@ static int wacom_graphire_irq(struct wacom_wac *wacom)
int retval = 0;

if (data[0] != WACOM_REPORT_PENABLED) {
dbg("wacom_graphire_irq: received unknown report #%d", data[0]);
dev_dbg(&input->dev,
"wacom_graphire_irq: received unknown report #%d\n",
data[0]);
goto exit;
}

Expand Down Expand Up @@ -484,7 +487,9 @@ static int wacom_intuos_irq(struct wacom_wac *wacom)

if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD
&& data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD) {
dbg("wacom_intuos_irq: received unknown report #%d", data[0]);
dev_dbg(&input->dev,
"wacom_intuos_irq: received unknown report #%d\n",
data[0]);
return 0;
}

Expand Down Expand Up @@ -830,7 +835,8 @@ static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len)
{
char *data = wacom->data;

dbg("wacom_tpc_irq: received report #%d", data[0]);
dev_dbg(&wacom->input->dev, "wacom_tpc_irq: received report #%d\n",
data[0]);

switch (len) {
case WACOM_PKGLEN_TPC1FG:
Expand Down

0 comments on commit 00f6528

Please sign in to comment.