Commit 192b6a84 authored by Muhammad Falak R Wani's avatar Muhammad Falak R Wani Committed by Greg Kroah-Hartman

staging: octeon: Remove explicit NULL comparison

Remove the explicit NULL comparison and rewrite in a compact form.
Signed-off-by: default avatarMuhammad Falak R Wani <falakreyaz@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4ef2de5a
...@@ -678,7 +678,7 @@ static int cvm_oct_probe(struct platform_device *pdev) ...@@ -678,7 +678,7 @@ static int cvm_oct_probe(struct platform_device *pdev)
} }
cvm_oct_poll_queue = create_singlethread_workqueue("octeon-ethernet"); cvm_oct_poll_queue = create_singlethread_workqueue("octeon-ethernet");
if (cvm_oct_poll_queue == NULL) { if (!cvm_oct_poll_queue) {
pr_err("octeon-ethernet: Cannot create workqueue"); pr_err("octeon-ethernet: Cannot create workqueue");
return -ENOMEM; return -ENOMEM;
} }
......
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