mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
serial: sh-sci: 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/c21664d013015584aebbb6bb8cedd748182cb551.1738746904.git.namcao@linutronix.de
This commit is contained in:
parent
721c5bf65a
commit
4e12149696
|
|
@ -1702,8 +1702,7 @@ static void sci_request_dma(struct uart_port *port)
|
|||
dma += s->buf_len_rx;
|
||||
}
|
||||
|
||||
hrtimer_init(&s->rx_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
|
||||
s->rx_timer.function = sci_dma_rx_timer_fn;
|
||||
hrtimer_setup(&s->rx_timer, sci_dma_rx_timer_fn, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
|
||||
|
||||
s->chan_rx_saved = s->chan_rx = chan;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user