treewide: Switch/rename to timer_delete[_sync]()

timer_delete[_sync]() replaces del_timer[_sync](). Convert the whole tree
over and remove the historical wrapper inlines.

Conversion was done with coccinelle plus manual fixups where necessary.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
Thomas Gleixner
2025-04-05 10:17:26 +02:00
committed by Ingo Molnar
parent a8662bcd2f
commit 8fa7292fee
787 changed files with 1613 additions and 1648 deletions

View File

@@ -163,7 +163,7 @@ void intel_wakeref_auto(struct intel_wakeref_auto *wf, unsigned long timeout)
unsigned long flags;
if (!timeout) {
if (del_timer_sync(&wf->timer))
if (timer_delete_sync(&wf->timer))
wakeref_auto_timeout(&wf->timer);
return;
}