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.

pps: generators: pps_gen_parport: Switch to use hrtimer_setup()

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/4bf3bb22e21f27c58bb28690d856df913431e693.1738746904.git.namcao@linutronix.de

authored by

Nam Cao and committed by
Thomas Gleixner
5e55888e c9269791

+1 -2
+1 -2
drivers/pps/generators/pps_gen_parport.c
··· 208 208 209 209 calibrate_port(&device); 210 210 211 - hrtimer_init(&device.timer, CLOCK_REALTIME, HRTIMER_MODE_ABS); 212 - device.timer.function = hrtimer_event; 211 + hrtimer_setup(&device.timer, hrtimer_event, CLOCK_REALTIME, HRTIMER_MODE_ABS); 213 212 hrtimer_start(&device.timer, next_intr_time(&device), HRTIMER_MODE_ABS); 214 213 215 214 return;