diff options
-rw-r--r-- | dde_pcnet32/pcnet32.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/dde_pcnet32/pcnet32.c b/dde_pcnet32/pcnet32.c index 1c5931c0..85c8a310 100644 --- a/dde_pcnet32/pcnet32.c +++ b/dde_pcnet32/pcnet32.c @@ -1159,7 +1159,6 @@ static void pcnet32_rx_entry(struct net_device *dev, struct sk_buff *skb; short pkt_len; - printk ("pcnet32_rx_entry: status: %x\n", status); if (status != 0x03) { /* There was an error. */ /* * There is a tricky error noted by John Murphy, @@ -1250,8 +1249,6 @@ static void pcnet32_rx_entry(struct net_device *dev, skb->protocol = eth_type_trans(skb, dev); netif_receive_skb(skb); dev->stats.rx_packets++; - printk ("receive a packet of %d bytes. now received %d packets\n", - pkt_len, dev->stats.rx_packets); return; } @@ -2555,7 +2552,6 @@ pcnet32_interrupt(int irq, void *dev_id) u16 csr0; int boguscnt = max_interrupt_work; - printk ("receive a pcnet32 interrupt\n"); ioaddr = dev->base_addr; lp = netdev_priv(dev); @@ -2563,7 +2559,6 @@ pcnet32_interrupt(int irq, void *dev_id) csr0 = lp->a.read_csr(ioaddr, CSR0); while ((csr0 & 0x8f00) && --boguscnt >= 0) { - printk ("in while loop: csr0: %x\n", csr0); if (csr0 == 0xffff) { break; /* PCMCIA remove happened */ } |