From: Ariel Elior Date: Mon, 14 Mar 2011 20:43:22 +0000 (-0700) Subject: bnx2x: fix swap of rx-ticks and tx-ticks parameters in interrupt coalescing flow X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=423cfa7e1fe68974b3b25fe8233ea57a5c2e5f02;p=mv-sheeva.git bnx2x: fix swap of rx-ticks and tx-ticks parameters in interrupt coalescing flow Signed-off-by: Ariel Elior Signed-off-by: Eilon Greenstein Signed-off-by: David S. Miller --- diff --git a/drivers/net/bnx2x/bnx2x_main.c b/drivers/net/bnx2x/bnx2x_main.c index aa032339e32..10bc0a6a32d 100644 --- a/drivers/net/bnx2x/bnx2x_main.c +++ b/drivers/net/bnx2x/bnx2x_main.c @@ -4208,7 +4208,7 @@ void bnx2x_update_coalesce(struct bnx2x *bp) for_each_eth_queue(bp, i) bnx2x_update_coalesce_sb(bp, bp->fp[i].fw_sb_id, - bp->rx_ticks, bp->tx_ticks); + bp->tx_ticks, bp->rx_ticks); } static void bnx2x_init_sp_ring(struct bnx2x *bp)