Skip to content

Commit

Permalink
Input: wacom - fix some formatting issues
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Dmitry Torokhov committed Apr 14, 2010
1 parent 51269fe commit 73a97f4
Show file tree
Hide file tree
Showing 2 changed files with 222 additions and 201 deletions.
4 changes: 2 additions & 2 deletions drivers/input/tablet/wacom_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ static void wacom_sys_irq(struct urb *urb)
wcombo.wacom = wacom;
wcombo.urb = urb;

if (wacom_wac_irq(&wacom->wacom_wac, (void *)&wcombo))
if (wacom_wac_irq(&wacom->wacom_wac, &wcombo))
input_sync(get_input_dev(&wcombo));

exit:
usb_mark_last_busy(wacom->usbdev);
retval = usb_submit_urb (urb, GFP_ATOMIC);
retval = usb_submit_urb(urb, GFP_ATOMIC);
if (retval)
err ("%s - usb_submit_urb failed with result %d",
__func__, retval);
Expand Down
Loading

0 comments on commit 73a97f4

Please sign in to comment.