diff options
author | Himanshu Jha | 2017-09-24 14:00:14 +0200 |
---|---|---|
committer | Martin Schwidefsky | 2017-09-28 07:29:43 +0200 |
commit | 8179c7ba109a8eca5fdc214d695ef009ee2fa9cb (patch) | |
tree | 6ba20c009efda3aef8a4284d1188293dd71f5130 /arch/s390/include/asm/processor.h | |
parent | s390/cpumf: remove superfluous nr_cpumask_bits check (diff) | |
download | kernel-qcow2-linux-8179c7ba109a8eca5fdc214d695ef009ee2fa9cb.tar.gz kernel-qcow2-linux-8179c7ba109a8eca5fdc214d695ef009ee2fa9cb.tar.xz kernel-qcow2-linux-8179c7ba109a8eca5fdc214d695ef009ee2fa9cb.zip |
s390/sclp: 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: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/processor.h')
0 files changed, 0 insertions, 0 deletions