Commit 71b4de84 authored by Rehas Sachdeva's avatar Rehas Sachdeva Committed by Greg Kroah-Hartman
Browse files

staging: sm750fb: Change 'x != NULL' to 'x'



Changes the explicit comparison to NULL from 'x != NULL' to 'x'. Issue detected
by checkpatch.

Signed-off-by: default avatarRehas Sachdeva <aquannie@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b29376c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1176,7 +1176,7 @@ static int __init lynxfb_setup(char *options)
		else {
			strcat(tmp, opt);
			tmp += strlen(opt);
			if (options != NULL)
			if (options)
				*tmp++ = ':';
			else
				*tmp++ = 0;