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: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b29376c31a
commit
71b4de84a0
|
@ -1176,7 +1176,7 @@ static int __init lynxfb_setup(char *options)
|
||||||
else {
|
else {
|
||||||
strcat(tmp, opt);
|
strcat(tmp, opt);
|
||||||
tmp += strlen(opt);
|
tmp += strlen(opt);
|
||||||
if (options != NULL)
|
if (options)
|
||||||
*tmp++ = ':';
|
*tmp++ = ':';
|
||||||
else
|
else
|
||||||
*tmp++ = 0;
|
*tmp++ = 0;
|
||||||
|
|
Loading…
Reference in New Issue