summaryrefslogtreecommitdiffstats
path: root/drivers/staging/octeon/ethernet-tx.c
diff options
context:
space:
mode:
authorMuhammad Falak R Wani2015-10-19 21:27:39 +0200
committerGreg Kroah-Hartman2015-10-25 03:28:52 +0100
commitffca44fb93e755e3af822966ddf0a5d041d8bd93 (patch)
tree73e5dacb6bec6e8df9ce8be51bd623d583ea3c48 /drivers/staging/octeon/ethernet-tx.c
parentstaging: octeon: Remove explicit NULL comparison (diff)
downloadkernel-qcow2-linux-ffca44fb93e755e3af822966ddf0a5d041d8bd93.tar.gz
kernel-qcow2-linux-ffca44fb93e755e3af822966ddf0a5d041d8bd93.tar.xz
kernel-qcow2-linux-ffca44fb93e755e3af822966ddf0a5d041d8bd93.zip
staging: octeon: Remove explicit NULL comparison
Remove the explicit NULL comparison and rewrite in a compact form. Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/octeon/ethernet-tx.c')
-rw-r--r--drivers/staging/octeon/ethernet-tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/octeon/ethernet-tx.c b/drivers/staging/octeon/ethernet-tx.c
index 3a5d8f53831c..c053c4a47a7e 100644
--- a/drivers/staging/octeon/ethernet-tx.c
+++ b/drivers/staging/octeon/ethernet-tx.c
@@ -549,7 +549,7 @@ int cvm_oct_xmit_pow(struct sk_buff *skb, struct net_device *dev)
/* Get a work queue entry */
cvmx_wqe_t *work = cvmx_fpa_alloc(CVMX_FPA_WQE_POOL);
- if (unlikely(work == NULL)) {
+ if (unlikely(!work)) {
printk_ratelimited("%s: Failed to allocate a work queue entry\n",
dev->name);
priv->stats.tx_dropped++;