Tag: dae6cdabe45baecfcfd02fbf11d97bb645450fc6

pcmcia: Use setup_timer

Author: Vaishali Thakkar <vthakkar1994@gmail.com> This patch introduces the use of function setup_timer. This is done using Coccinelle and semantic patch used is as follows: @@ expression x,y,z; @@ – init_timer (&x); + setup_timer (&x, y, z); – x.function = y; – x.data = z; Signed-off-by: Vaishali Thakkar Signed-off-by: Greg Kroah-Hartman — drivers/pcmcia/omap_cf.c | 4 +— …

Continue reading