diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2014-12-26 15:35:45 +0100 |
---|---|---|
committer | Bryan Wu <cooloney@gmail.com> | 2015-01-14 19:40:20 +0100 |
commit | 137fe48d3956a1acfe1851d07ef1fc30fa405e84 (patch) | |
tree | 38980106cbfb2b61a2f064b5589d7b72d7afef98 /usr | |
parent | leds: Don't allow brightness values greater than max_brightness (diff) | |
download | linux-137fe48d3956a1acfe1851d07ef1fc30fa405e84.tar.xz linux-137fe48d3956a1acfe1851d07ef1fc30fa405e84.zip |
leds: Use setup_timer
Convert a call to init_timer and accompanying intializations of
the timer's data and function fields to a call to setup_timer.
A simplified version of the semantic match that fixes this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
expression t,f,d;
@@
-init_timer(&t);
+setup_timer(&t,f,d);
-t.function = f;
-t.data = d;
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
Diffstat (limited to 'usr')
0 files changed, 0 insertions, 0 deletions