From: Vaishali Thakkar Date: Mon, 1 Jun 2015 04:06:02 +0000 (+0530) Subject: net: mv643xx_eth: Use setup_timer X-Git-Tag: omap-for-v4.3/legacy-v2-signed~163^2~172 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12d5e6fd1d66a8faa14e4922035bfed70bf014d5;p=pandora-kernel.git net: mv643xx_eth: Use setup_timer Use the timer API function setup_timer instead of structure field assignments to initialize a timer. A simplified version of the Coccinelle semantic patch that performs this transformation is as follows: @change@ expression e, func, da; @@ -init_timer (&e); +setup_timer (&e, func, da); -e.data = da; -e.function = func; Signed-off-by: Vaishali Thakkar Signed-off-by: David S. Miller --- Reading git-diff-tree failed