Am Mittwoch, 23. September 2009 22:46:09 schrieb Sergei Shtylyov: > This wouldn't have passed checkpatch.pl BTW -- due to spaces between > function names and parens. :-) As you like it. Oliver Signed-off-by: Oliver Neukum <oliver@xxxxxxxxxx> -- commit d375f9f3ab6c2106594c3a544bcff0cdbe70c780 Author: Oliver Neukum <oliver@xxxxxxxxxx> Date: Thu Sep 24 00:30:39 2009 +0200 usb:usbtmc: confirm to style guide diff --git a/drivers/usb/class/usbtmc.c b/drivers/usb/class/usbtmc.c index 333ee02..deb78a1 100644 --- a/drivers/usb/class/usbtmc.c +++ b/drivers/usb/class/usbtmc.c @@ -1109,13 +1109,13 @@ static void usbtmc_disconnect(struct usb_interface *intf) kref_put(&data->kref, usbtmc_delete); } -static int usbtmc_suspend (struct usb_interface *intf, pm_message_t message) +static int usbtmc_suspend(struct usb_interface *intf, pm_message_t message) { /* this driver does not have pending URBs */ return 0; } -static int usbtmc_resume (struct usb_interface *intf) +static int usbtmc_resume(struct usb_interface *intf) { return 0; } -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html