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: NSebastian Rachuj <sebastian.rachuj@studium.uni-erlangen.de> Signed-off-by: NSimon Schuster <linux@rationality.eu> Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Showing
想要评论请 注册 或 登录