git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ab163a
)
pcmcia: Use setup_timer
author
Vaishali Thakkar
<vthakkar1994@gmail.com>
Wed, 11 Feb 2015 10:55:38 +0000
(16:25 +0530)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 16 Mar 2015 20:31:43 +0000
(21:31 +0100)
This patch introduces the use of function setup_timer.
This is done using Coccinelle and semantic patch used is
as follows:
@@
expression x,y,z;
@@
- init_timer (&x);
+ setup_timer (&x, y, z);
- x.function = y;
- x.data = z;
Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
No differences found