Call kfree only if required else return from function.

Signed-off-by: Sachin Kamat <[email protected]>
Signed-off-by: Rupesh Gujare <[email protected]>
---
 drivers/staging/ozwpan/ozpd.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/ozwpan/ozpd.c b/drivers/staging/ozwpan/ozpd.c
index 0b3648c..1dd8980 100644
--- a/drivers/staging/ozwpan/ozpd.c
+++ b/drivers/staging/ozwpan/ozpd.c
@@ -399,11 +399,11 @@ static void oz_tx_frame_free(struct oz_pd *pd, struct 
oz_tx_frame *f)
                f->link.next = pd->tx_pool;
                pd->tx_pool = &f->link;
                pd->tx_pool_count++;
-               f = 0;
+               spin_unlock_bh(&pd->tx_frame_lock);
+               return;
        }
        spin_unlock_bh(&pd->tx_frame_lock);
-       if (f)
-               kfree(f);
+       kfree(f);
 }
 
/*------------------------------------------------------------------------------
  * Context: softirq-serialized
-- 
1.7.5.4


--
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