Skip to content

Commit ed8a83a

Browse files
govindarajuludavem330
authored andcommitted
net: 3com: 3c509: remove unnecessary code
This patch removes unnecessary #if 0 code from 3c509.c Signed-off-by: govindarajulu.v <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent d6a98c9 commit ed8a83a

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

drivers/net/ethernet/3com/3c509.c

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -723,25 +723,6 @@ el3_start_xmit(struct sk_buff *skb, struct net_device *dev)
723723
pr_debug("%s: el3_start_xmit(length = %u) called, status %4.4x.\n",
724724
dev->name, skb->len, inw(ioaddr + EL3_STATUS));
725725
}
726-
#if 0
727-
#ifndef final_version
728-
{ /* Error-checking code, delete someday. */
729-
ushort status = inw(ioaddr + EL3_STATUS);
730-
if (status & 0x0001 && /* IRQ line active, missed one. */
731-
inw(ioaddr + EL3_STATUS) & 1) { /* Make sure. */
732-
pr_debug("%s: Missed interrupt, status then %04x now %04x"
733-
" Tx %2.2x Rx %4.4x.\n", dev->name, status,
734-
inw(ioaddr + EL3_STATUS), inb(ioaddr + TX_STATUS),
735-
inw(ioaddr + RX_STATUS));
736-
/* Fake interrupt trigger by masking, acknowledge interrupts. */
737-
outw(SetStatusEnb | 0x00, ioaddr + EL3_CMD);
738-
outw(AckIntr | IntLatch | TxAvailable | RxEarly | IntReq,
739-
ioaddr + EL3_CMD);
740-
outw(SetStatusEnb | 0xff, ioaddr + EL3_CMD);
741-
}
742-
}
743-
#endif
744-
#endif
745726
/*
746727
* We lock the driver against other processors. Note
747728
* we don't need to lock versus the IRQ as we suspended

0 commit comments

Comments
 (0)