[PATCH] Remove useless check in drivers/net/pcmcia/xirc2ps_cs.c
authorEric Sesterhenn <snakebyte@gmx.de>
Wed, 21 Jun 2006 14:10:48 +0000 (16:10 +0200)
committerJeff Garzik <jeff@garzik.org>
Fri, 23 Jun 2006 03:22:17 +0000 (23:22 -0400)
hi,

coverity choked at this check (id #223), assuming that
skb might be NULL and used anyways later. Since
start_hard_xmit() always gets called with a valid
skb, the check is useless and this patch removes it.

Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/net/pcmcia/xirc2ps_cs.c

index 71f4505..e80d1e3 100644 (file)
@@ -1359,7 +1359,7 @@ do_start_xmit(struct sk_buff *skb, struct net_device *dev)
     kio_addr_t ioaddr = dev->base_addr;
     int okay;
     unsigned freespace;
-    unsigned pktlen = skb? skb->len : 0;
+    unsigned pktlen = skb->len;
 
     DEBUG(1, "do_start_xmit(skb=%p, dev=%p) len=%u\n",
          skb, dev, pktlen);