diff options
Diffstat (limited to 'drivers/usb/input/wacom_sys.c')
-rw-r--r-- | drivers/usb/input/wacom_sys.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/usb/input/wacom_sys.c b/drivers/usb/input/wacom_sys.c index 7c3b52bdd9d6..d233c37bd533 100644 --- a/drivers/usb/input/wacom_sys.c +++ b/drivers/usb/input/wacom_sys.c | |||
@@ -42,7 +42,7 @@ static struct input_dev * get_input_dev(struct wacom_combo *wcombo) | |||
42 | return wcombo->wacom->dev; | 42 | return wcombo->wacom->dev; |
43 | } | 43 | } |
44 | 44 | ||
45 | void wacom_sys_irq(struct urb *urb, struct pt_regs *regs) | 45 | void wacom_sys_irq(struct urb *urb) |
46 | { | 46 | { |
47 | struct wacom *wacom = urb->context; | 47 | struct wacom *wacom = urb->context; |
48 | struct wacom_combo wcombo; | 48 | struct wacom_combo wcombo; |
@@ -65,7 +65,6 @@ void wacom_sys_irq(struct urb *urb, struct pt_regs *regs) | |||
65 | 65 | ||
66 | wcombo.wacom = wacom; | 66 | wcombo.wacom = wacom; |
67 | wcombo.urb = urb; | 67 | wcombo.urb = urb; |
68 | wcombo.regs = regs; | ||
69 | 68 | ||
70 | if (wacom_wac_irq(wacom->wacom_wac, (void *)&wcombo)) | 69 | if (wacom_wac_irq(wacom->wacom_wac, (void *)&wcombo)) |
71 | input_sync(get_input_dev(&wcombo)); | 70 | input_sync(get_input_dev(&wcombo)); |
@@ -115,12 +114,6 @@ __u16 wacom_le16_to_cpu(unsigned char *data) | |||
115 | return value; | 114 | return value; |
116 | } | 115 | } |
117 | 116 | ||
118 | void wacom_input_regs(void *wcombo) | ||
119 | { | ||
120 | input_regs(get_input_dev((struct wacom_combo *)wcombo), ((struct wacom_combo *)wcombo)->regs); | ||
121 | return; | ||
122 | } | ||
123 | |||
124 | void wacom_input_sync(void *wcombo) | 117 | void wacom_input_sync(void *wcombo) |
125 | { | 118 | { |
126 | input_sync(get_input_dev((struct wacom_combo *)wcombo)); | 119 | input_sync(get_input_dev((struct wacom_combo *)wcombo)); |