Commit 6d408e0b authored by Maninder Singh's avatar Maninder Singh Committed by Greg Kroah-Hartman

Staging: xgifb: Fix NULL pointer comparison warning

Replace direct comparisons to NULL i.e.
'x == NULL' with '!x'.
This problem was detected by checkpatch.
Signed-off-by: default avatarManinder Singh <maninder.s2@samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 31b15fe6
......@@ -518,7 +518,7 @@ static void XGIfb_search_crt2type(const char *name)
{
int i = 0;
if (name == NULL)
if (!name)
return;
while (XGI_crt2type[i].type_no != -1) {
......@@ -589,7 +589,7 @@ static void XGIfb_search_tvstd(const char *name)
{
int i = 0;
if (name == NULL)
if (!name)
return;
while (XGI_tvtype[i].type_no != -1) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment