bnxt_en: Optimize ring alloc and ring free functions.
authorMichael Chan <mchan@broadcom.com>
Sun, 27 Dec 2015 23:19:19 +0000 (18:19 -0500)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Dec 2015 05:57:28 +0000 (00:57 -0500)
commitedd0c2cc2b73ff21f356d6cbd3b5bf83e692ea9d
treef53afbd27401a0fe0be979dcc2ec350966b09760
parentbe58a0da1672391b246880450e990fe36d7ba24d
bnxt_en: Optimize ring alloc and ring free functions.

Remove the unnecessary "if" statement before the "for" statement:

if (x) {
        for (i = 0; i < x; i++)
...
}

Also, change the ring free function to return void as it only returns 0.

Signed-off-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/bnxt/bnxt.c