diff options
author | Somya Anand <somyaanand214@gmail.com> | 2015-03-11 14:32:14 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-16 18:17:31 +0300 |
commit | 2049f1ea88fa07e5912c67c4c623bb342b4b02af (patch) | |
tree | c218186f3c79301f6ace9b49a1d1657bbee80e4b /drivers/staging/i2o | |
parent | dc6ed26dc32f2365647e9a156beafe3dcbde612e (diff) | |
download | linux-2049f1ea88fa07e5912c67c4c623bb342b4b02af.tar.xz |
Staging: dgap: Use setup_timer to combine initialization
The function setup_timer combines the initialization of a timer with the
initialization of the timer's function and data fields.
So, this patch combines the multiline code for timer initialization using the function
setup_timer. This issue is identified via coccinelle script.
@@
expression E1, E2, E3;
type T;
@@
- init_timer(&E1);
...
(
- E1.function = E2;
...
- E1.data = (T)E3;
+ setup_timer(&E1, E2, (T)E3);
|
- E1.data = (T)E3;
...
- E1.function = E2;
+ setup_timer(&E1, E2, (T)E3);
|
- E1.function = E2;
+ setup_timer(&E1, E2, 0);
)
Signed-off-by: Somya Anand <somyaanand214@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/i2o')
0 files changed, 0 insertions, 0 deletions