diff options
| author | Ingo Molnar <mingo@kernel.org> | 2025-05-07 19:53:37 +0200 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2025-05-08 19:49:33 +0200 |
| commit | aad823aa3a7d675a8d0de478a04307f63e3725db (patch) | |
| tree | 87aa83dc40f0486dff45e5d97237a4bdccdbb715 /drivers/firewire | |
| parent | 367ed4e35734d6e7bce1dbca426a5bf150d76905 (diff) | |
| download | linux-aad823aa3a7d675a8d0de478a04307f63e3725db.tar.gz linux-aad823aa3a7d675a8d0de478a04307f63e3725db.tar.bz2 linux-aad823aa3a7d675a8d0de478a04307f63e3725db.zip | |
treewide, timers: Rename destroy_timer_on_stack() as timer_destroy_on_stack()
Move this API to the canonical timer_*() namespace.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20250507175338.672442-10-mingo@kernel.org
Diffstat (limited to 'drivers/firewire')
| -rw-r--r-- | drivers/firewire/core-transaction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firewire/core-transaction.c b/drivers/firewire/core-transaction.c index b0f9ef6ac6df..18cacb9edbbc 100644 --- a/drivers/firewire/core-transaction.c +++ b/drivers/firewire/core-transaction.c @@ -431,7 +431,7 @@ int fw_run_transaction(struct fw_card *card, int tcode, int destination_id, fw_send_request(card, &t, tcode, destination_id, generation, speed, offset, payload, length, transaction_callback, &d); wait_for_completion(&d.done); - destroy_timer_on_stack(&t.split_timeout_timer); + timer_destroy_on_stack(&t.split_timeout_timer); return d.rcode; } |
