From: Aya Mahfouz Date: Thu, 19 Feb 2015 05:55:43 +0000 (+0200) Subject: staging: wlan-ng: replace init_timer by setup_timer X-Git-Tag: omap-for-v4.1/fixes-rc1~165^2~138^2~938 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f83aeda567a9f5347153fb21f29e0b09b3aa83a;p=pandora-kernel.git staging: wlan-ng: replace init_timer by setup_timer This patch replaces init_timer and the 2 step initialization of function and data by setup_timer to make the code more concise. The issue was discovered using the following coccinelle script: @@ expression ds, e1, e2; @@ -init_timer (&ds); +setup_timer (&ds, e1, e2); ... ( -ds.function = e1; ... -ds.data = e2; | -ds.data = e2; ... -ds.function = e1; ) Signed-off-by: Aya Mahfouz Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed