Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 177080
b: refs/heads/master
c: 232f569
h: refs/heads/master
v: v3
  • Loading branch information
Ping Cheng authored and Dmitry Torokhov committed Dec 15, 2009
1 parent 6421b6b commit acd76f0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 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: e47c4f70ea41fd973eec80a9388a1347d3d27896
refs/heads/master: 232f5693e5c9483e222528ef81979e42ea2f2908
7 changes: 4 additions & 3 deletions trunk/drivers/input/tablet/wacom.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* drivers/input/tablet/wacom.h
*
* USB Wacom Graphire and Wacom Intuos tablet support
* USB Wacom tablet support
*
* Copyright (c) 2000-2004 Vojtech Pavlik <vojtech@ucw.cz>
* Copyright (c) 2000 Andreas Bach Aaen <abach@stofanet.dk>
Expand Down Expand Up @@ -69,6 +69,7 @@
* v1.49 (pc) - Added support for USB Tablet PC (0x90, 0x93, and 0x9A)
* v1.50 (pc) - Fixed a TabletPC touch bug in 2.6.28
* v1.51 (pc) - Added support for Intuos4
* v1.52 (pc) - Query Wacom data upon system resume
*/

/*
Expand All @@ -89,9 +90,9 @@
/*
* Version Information
*/
#define DRIVER_VERSION "v1.51"
#define DRIVER_VERSION "v1.52"
#define DRIVER_AUTHOR "Vojtech Pavlik <vojtech@ucw.cz>"
#define DRIVER_DESC "USB Wacom Graphire and Wacom Intuos tablet driver"
#define DRIVER_DESC "USB Wacom tablet driver"
#define DRIVER_LICENSE "GPL"

MODULE_AUTHOR(DRIVER_AUTHOR);
Expand Down
7 changes: 4 additions & 3 deletions trunk/drivers/input/tablet/wacom_sys.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* drivers/input/tablet/wacom_sys.c
*
* USB Wacom Graphire and Wacom Intuos tablet support - system specific code
* USB Wacom tablet support - system specific code
*/

/*
Expand Down Expand Up @@ -562,9 +562,10 @@ static int wacom_resume(struct usb_interface *intf)
int rv;

mutex_lock(&wacom->lock);
if (wacom->open)
if (wacom->open) {
rv = usb_submit_urb(wacom->irq, GFP_NOIO);
else
wacom_query_tablet_data(intf);
} else
rv = 0;
mutex_unlock(&wacom->lock);

Expand Down

0 comments on commit acd76f0

Please sign in to comment.