Remove the explicit NULL comparison and rewrite in a compact form.

Signed-off-by: Muhammad Falak R Wani <[email protected]>
---
 drivers/staging/octeon/ethernet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/octeon/ethernet.c 
b/drivers/staging/octeon/ethernet.c
index fbbe866..f9ef555 100644
--- a/drivers/staging/octeon/ethernet.c
+++ b/drivers/staging/octeon/ethernet.c
@@ -634,7 +634,7 @@ static int cvm_oct_probe(struct platform_device *pdev)
        }
 
        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");
                return -ENOMEM;
        }
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to