]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
usb: core: Drop spaces after function names
authorClaudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Wed, 24 Sep 2025 09:10:36 +0000 (12:10 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Oct 2025 07:11:48 +0000 (09:11 +0200)
Drop spaces after function name to comply with the coding style.

Signed-off-by: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Link: https://lore.kernel.org/r/20250924091036.1319161-1-claudiu.beznea.uj@bp.renesas.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/core/hcd.c

index 9dd79769cad1128cb9fb835e8ad01b16138a9b10..24feb0de1c0060a34674b9b565bdcd45dd75c267 100644 (file)
@@ -2696,18 +2696,18 @@ static void hcd_release(struct kref *kref)
        kfree(hcd);
 }
 
-struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd)
+struct usb_hcd *usb_get_hcd(struct usb_hcd *hcd)
 {
        if (hcd)
-               kref_get (&hcd->kref);
+               kref_get(&hcd->kref);
        return hcd;
 }
 EXPORT_SYMBOL_GPL(usb_get_hcd);
 
-void usb_put_hcd (struct usb_hcd *hcd)
+void usb_put_hcd(struct usb_hcd *hcd)
 {
        if (hcd)
-               kref_put (&hcd->kref, hcd_release);
+               kref_put(&hcd->kref, hcd_release);
 }
 EXPORT_SYMBOL_GPL(usb_put_hcd);