mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:24:45 +01:00
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>
This commit is contained in:
parent
6f64e1872b
commit
a0da19eda9
1 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue