diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-03-20 01:18:15 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-04-14 02:24:16 -0400 |
commit | 73a97f4f6e53545b71f5c14ae2cb70a4b8d3cf63 (patch) | |
tree | 976028cc148ab1503ed3b898af07d7d2d9b6b3da /drivers/input/tablet/wacom_sys.c | |
parent | 51269fe86c263ec4fafbafe82970e6d7f6f79102 (diff) |
Input: wacom - fix some formatting issues
Fix identation of switch/case statements so they follow style used by the
rest of the kernel.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/tablet/wacom_sys.c')
-rw-r--r-- | drivers/input/tablet/wacom_sys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/tablet/wacom_sys.c b/drivers/input/tablet/wacom_sys.c index 0e5e56cef7f0..ed339e5eca86 100644 --- a/drivers/input/tablet/wacom_sys.c +++ b/drivers/input/tablet/wacom_sys.c | |||
@@ -99,12 +99,12 @@ static void wacom_sys_irq(struct urb *urb) | |||
99 | wcombo.wacom = wacom; | 99 | wcombo.wacom = wacom; |
100 | wcombo.urb = urb; | 100 | wcombo.urb = urb; |
101 | 101 | ||
102 | if (wacom_wac_irq(&wacom->wacom_wac, (void *)&wcombo)) | 102 | if (wacom_wac_irq(&wacom->wacom_wac, &wcombo)) |
103 | input_sync(get_input_dev(&wcombo)); | 103 | input_sync(get_input_dev(&wcombo)); |
104 | 104 | ||
105 | exit: | 105 | exit: |
106 | usb_mark_last_busy(wacom->usbdev); | 106 | usb_mark_last_busy(wacom->usbdev); |
107 | retval = usb_submit_urb (urb, GFP_ATOMIC); | 107 | retval = usb_submit_urb(urb, GFP_ATOMIC); |
108 | if (retval) | 108 | if (retval) |
109 | err ("%s - usb_submit_urb failed with result %d", | 109 | err ("%s - usb_submit_urb failed with result %d", |
110 | __func__, retval); | 110 | __func__, retval); |