From: John W. Linville Date: Wed, 22 Jun 2005 00:15:14 +0000 (-0700) Subject: [PATCH] 3c59x: remove superfluous vortex_debug test from boomerang_start_xmit() X-Git-Tag: v2.6.13-rc4~130^2~202^2~128 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=0f667ff5c0282f686b4f739e46353779b3cfa2f6;p=linux-2.6-omap-h63xx.git [PATCH] 3c59x: remove superfluous vortex_debug test from boomerang_start_xmit() Remove the superfluous test of "if (vortex_debug > 3)" inside the "if (vortex_debug > 6)" clause early in boomerang_start_xmit. Signed-off-by: John W. Linville Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c index b5e07604343..80ec9aa575b 100644 --- a/drivers/net/3c59x.c +++ b/drivers/net/3c59x.c @@ -2202,9 +2202,8 @@ boomerang_start_xmit(struct sk_buff *skb, struct net_device *dev) if (vortex_debug > 6) { printk(KERN_DEBUG "boomerang_start_xmit()\n"); - if (vortex_debug > 3) - printk(KERN_DEBUG "%s: Trying to send a packet, Tx index %d.\n", - dev->name, vp->cur_tx); + printk(KERN_DEBUG "%s: Trying to send a packet, Tx index %d.\n", + dev->name, vp->cur_tx); } if (vp->cur_tx - vp->dirty_tx >= TX_RING_SIZE) {