]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
usb: fotg210-hcd: Switch to use hrtimer_setup()
authorNam Cao <namcao@linutronix.de>
Wed, 5 Feb 2025 10:45:51 +0000 (11:45 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 18 Feb 2025 10:19:02 +0000 (11:19 +0100)
hrtimer_setup() takes the callback function pointer as argument and
initializes the timer completely.

Replace hrtimer_init() and the open coded initialization of
hrtimer::function with the new setup mechanism.

Patch was created by using Coccinelle.

Signed-off-by: Nam Cao <namcao@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Zack Rusin <zack.rusin@broadcom.com>
Link: https://lore.kernel.org/all/eeabb788995d7566017ebcff6cc2daa8da35432d.1738746904.git.namcao@linutronix.de
drivers/usb/fotg210/fotg210-hcd.c

index 3d404d19a205e3e432f8d367a28f1008bdc533dd..64c4965a160f4713807122dae0440e65f3f2bd4d 100644 (file)
@@ -4901,8 +4901,7 @@ static int hcd_fotg210_init(struct usb_hcd *hcd)
         */
        fotg210->need_io_watchdog = 1;
 
-       hrtimer_init(&fotg210->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
-       fotg210->hrtimer.function = fotg210_hrtimer_func;
+       hrtimer_setup(&fotg210->hrtimer, fotg210_hrtimer_func, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
        fotg210->next_hrtimer_event = FOTG210_HRTIMER_NO_EVENT;
 
        hcc_params = fotg210_readl(fotg210, &fotg210->caps->hcc_params);