]> git.baikalelectronics.ru Git - kernel.git/commit
net: bcm63xx_enet: Use setup_timer and mod_timer
authorHimanshu Jha <himanshujha199640@gmail.com>
Sun, 24 Sep 2017 12:11:24 +0000 (17:41 +0530)
committerDavid S. Miller <davem@davemloft.net>
Tue, 26 Sep 2017 18:33:25 +0000 (11:33 -0700)
commitc6f41900f584624ca12bd85bbbf5b97122a6a732
tree46b8da87ebec2a2e22cdf0758d54cdc7adde7c8b
parent6220eb3ce065e82bc71688fe7d175d0c5f303bfd
net: bcm63xx_enet: Use setup_timer and mod_timer

Use setup_timer and mod_timer API instead of structure assignments.

This is done using Coccinelle and semantic patch used
for this as follows:

@@
expression x,y,z,a,b;
@@

-init_timer (&x);
+setup_timer (&x, y, z);
+mod_timer (&a, b);
-x.function = y;
-x.data = z;
-x.expires = b;
-add_timer(&a);

Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/bcm63xx_enet.c