diff options
author | Himanshu Jha | 2017-09-24 14:11:24 +0200 |
---|---|---|
committer | David S. Miller | 2017-09-26 20:33:25 +0200 |
commit | 3bd3b9ed1b602c065aa0b1ba109b9622afa6ff98 (patch) | |
tree | 46b8da87ebec2a2e22cdf0758d54cdc7adde7c8b /include | |
parent | Merge branch 'qed-iWARP-fixes-and-enhancements' (diff) | |
download | kernel-qcow2-linux-3bd3b9ed1b602c065aa0b1ba109b9622afa6ff98.tar.gz kernel-qcow2-linux-3bd3b9ed1b602c065aa0b1ba109b9622afa6ff98.tar.xz kernel-qcow2-linux-3bd3b9ed1b602c065aa0b1ba109b9622afa6ff98.zip |
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>
Diffstat (limited to 'include')
0 files changed, 0 insertions, 0 deletions