diff options
author | Himanshu Jha <himanshujha199640@gmail.com> | 2017-10-17 16:01:12 +0200 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | 2017-10-17 16:01:12 +0200 |
commit | 5eabff1cb9dad4e81ee387ac79f7521d078bfa8f (patch) | |
tree | ac46cccbefdd2925bfb71eb177db1fe8bdafcd0f /drivers/thermal/x86_pkg_temp_thermal.c | |
parent | 0c09dd051b0cb9cb949cf8582ff7c9b10bfdfb0f (diff) |
video: fbdev: pxa3xx_gcu: 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>
Cc: "Gustavo A. R. Silva" <gustavo@embeddedor.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Diffstat (limited to 'drivers/thermal/x86_pkg_temp_thermal.c')
0 files changed, 0 insertions, 0 deletions