From: Heena Sirwani Date: Tue, 7 Oct 2014 09:15:56 +0000 (+0530) Subject: Staging: rtl8723au: os_dep: Removed variable that is always 0. X-Git-Tag: omap-for-v3.20/drop-legacy-3517~70^2~1266 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=911f2921c41cece94689bc0bb4dc9f7723d40839;p=pandora-kernel.git Staging: rtl8723au: os_dep: Removed variable that is always 0. The following patch removes a variable that is always 0 using coccinelle. The semaintic patch used is as follows: @@ identifier ret; @@ -int ret = 0; ... when != ret when strict -return ret; +return 0; Signed-off-by: Heena Sirwani Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed