Skip to content

Commit 1c0c232

Browse files
committed
treewide: Switch/rename to timer_delete[_sync]()
JIRA: https://issues.redhat.com/browse/RHEL-83218 Conflicts: Include only the iw_cxgb4 hunks. commit 8fa7292 Author: Thomas Gleixner <tglx@linutronix.de> Date: Sat Apr 5 10:17:26 2025 +0200 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> Signed-off-by: Kamal Heib <kheib@redhat.com>
1 parent c2c1931 commit 1c0c232

File tree

1 file changed

+1
-1
lines changed
  • drivers/infiniband/hw/cxgb4

1 file changed

+1
-1
lines changed

drivers/infiniband/hw/cxgb4/cm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ static void start_ep_timer(struct c4iw_ep *ep)
191191
static int stop_ep_timer(struct c4iw_ep *ep)
192192
{
193193
pr_debug("ep %p stopping\n", ep);
194-
del_timer_sync(&ep->timer);
194+
timer_delete_sync(&ep->timer);
195195
if (!test_and_set_bit(TIMEOUT, &ep->com.flags)) {
196196
c4iw_put_ep(&ep->com);
197197
return 0;

0 commit comments

Comments
 (0)