Commit 73a97f4f authored by Dmitry Torokhov's avatar Dmitry Torokhov

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: default avatarDmitry Torokhov <dtor@mail.ru>
parent 51269fe8
......@@ -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);
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment