From: Ilia Mirkin Date: Sun, 13 Mar 2011 05:29:16 +0000 (-0500) Subject: staging: winbond: Remove NULL check before kfree X-Git-Tag: v2.6.39-rc1~469^2~74 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d527a7adbc47bdc357ddab513861e6a7636755e;p=pandora-kernel.git staging: winbond: Remove NULL check before kfree This patch was generated by the following semantic patch: // @@ expression E; @@ - if (E != NULL) { kfree(E); } + kfree(E); @@ expression E; @@ - if (E != NULL) { kfree(E); E = NULL; } + kfree(E); + E = NULL; // Signed-off-by: Ilia Mirkin Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed