Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

usb: core: Drop spaces after function names

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>

authored by

Claudiu Beznea and committed by
Greg Kroah-Hartman
a0da19ed 6f64e187

+4 -4
+4 -4
drivers/usb/core/hcd.c
··· 2696 2696 kfree(hcd); 2697 2697 } 2698 2698 2699 - struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd) 2699 + struct usb_hcd *usb_get_hcd(struct usb_hcd *hcd) 2700 2700 { 2701 2701 if (hcd) 2702 - kref_get (&hcd->kref); 2702 + kref_get(&hcd->kref); 2703 2703 return hcd; 2704 2704 } 2705 2705 EXPORT_SYMBOL_GPL(usb_get_hcd); 2706 2706 2707 - void usb_put_hcd (struct usb_hcd *hcd) 2707 + void usb_put_hcd(struct usb_hcd *hcd) 2708 2708 { 2709 2709 if (hcd) 2710 - kref_put (&hcd->kref, hcd_release); 2710 + kref_put(&hcd->kref, hcd_release); 2711 2711 } 2712 2712 EXPORT_SYMBOL_GPL(usb_put_hcd); 2713 2713