From: Sebastian Rachuj Date: Sat, 4 Jan 2014 15:25:17 +0000 (+0100) Subject: Staging: vt6656: Remove explicit comparisons against NULL X-Git-Tag: v3.14-rc1~150^2~151 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5918ed4203362393c88dd33d6f44625e775416d1;p=pandora-kernel.git Staging: vt6656: Remove explicit comparisons against NULL Explicit comparisons of pointers agains NULL (like if (p != NULL) ...) are not as readable as the implicit comparison (like if (p) ...). This patch converts all these explicit comparisons to implicit ones. Signed-off-by: Sebastian Rachuj Signed-off-by: Simon Schuster Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed