diff options
author | Vaishali Thakkar <vthakkar1994@gmail.com> | 2015-06-01 10:28:37 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-05-31 22:26:03 -0700 |
commit | 493be55ac3d81f9c32832237288eb397a9993d5d (patch) | |
tree | aded90a12bca090225d9e7aca3b74743ba76cff2 /net/ethernet | |
parent | f7f35c0209b579256accb16c63f56510773f6e3e (diff) | |
download | linux-493be55ac3d81f9c32832237288eb397a9993d5d.tar.gz linux-493be55ac3d81f9c32832237288eb397a9993d5d.tar.bz2 linux-493be55ac3d81f9c32832237288eb397a9993d5d.zip |
xen-netfront: Use setup_timer
Use the timer API function setup_timer instead of structure field
assignments to initialize a timer.
A simplified version of the Coccinelle semantic patch that performs
this transformation is as follows:
@change@
expression e, func, da;
@@
-init_timer (&e);
+setup_timer (&e, func, da);
-e.data = da;
-e.function = func;
Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ethernet')
0 files changed, 0 insertions, 0 deletions