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
This commit is contained in:
Ingo Molnar
2025-05-07 19:53:37 +02:00
committed by Thomas Gleixner
parent 367ed4e357
commit aad823aa3a
22 changed files with 25 additions and 25 deletions

View File

@@ -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;
}