aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorNam Cao <namcao@linutronix.de>2025-02-05 11:45:57 +0100
committerThomas Gleixner <tglx@linutronix.de>2025-02-18 11:19:02 +0100
commitc5f0fa1622f6fec7c461f2fe5b5d62229b4ae785 (patch)
treeacd80bbde62e99bb637cddfb12f4d7f23d8a817b
parentserial: 8250: Switch to use hrtimer_setup() (diff)
downloadwireguard-linux-c5f0fa1622f6fec7c461f2fe5b5d62229b4ae785.tar.xz
wireguard-linux-c5f0fa1622f6fec7c461f2fe5b5d62229b4ae785.zip
serial: amba-pl011: 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> Link: https://lore.kernel.org/all/78e8c0d1b38998eab983fad265751ed13c2b9009.1738746904.git.namcao@linutronix.de
-rw-r--r--drivers/tty/serial/amba-pl011.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c
index 04212c823a91..98f178bdbcbe 100644
--- a/drivers/tty/serial/amba-pl011.c
+++ b/drivers/tty/serial/amba-pl011.c
@@ -2867,11 +2867,10 @@ static int pl011_probe(struct amba_device *dev, const struct amba_id *id)
return -EINVAL;
}
}
-
- hrtimer_init(&uap->trigger_start_tx, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
- hrtimer_init(&uap->trigger_stop_tx, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
- uap->trigger_start_tx.function = pl011_trigger_start_tx;
- uap->trigger_stop_tx.function = pl011_trigger_stop_tx;
+ hrtimer_setup(&uap->trigger_start_tx, pl011_trigger_start_tx, CLOCK_MONOTONIC,
+ HRTIMER_MODE_REL);
+ hrtimer_setup(&uap->trigger_stop_tx, pl011_trigger_stop_tx, CLOCK_MONOTONIC,
+ HRTIMER_MODE_REL);
ret = pl011_setup_port(&dev->dev, uap, &dev->res, portnr);
if (ret)