commit | 6149e2e4447c86eaf3c1870694dfe4b2bcd8ec0d | [log] [tgz] |
---|---|---|
author | Muhammad Falak R Wani <falakreyaz@gmail.com> | Sun Oct 25 15:47:30 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Oct 26 04:09:16 2015 +0900 |
tree | bf2c07f1862a309392c2eda0ac8eb4d4e3564569 | |
parent | 575ff198f5a3981e8d9fb54e61876f9082ca3bd7 [diff] |
staging: ipath: ipath_driver: Use setup_timer Use the timer API function setup_timer instead of init_timer, removing the structure field assignments. The simplified semantic patch used is :- <smpl> @timer@ expression e1,e2,e3,fn_ptr; @@ -init_timer(&e1); +setup_timer(&e1, fn_ptr, e2); ... when != fn_ptr = e3 -e1.function = fn_ptr; -e1.data = e2; </smpl> Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>