X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=drivers%2Fnet%2Fsgiseeq.c;h=a4614df38a903a53207507485eeec9a5486f50ae;hb=987b0145d94eecf292d8b301228356f44611ab7c;hp=f95a5b0223fb9ff8d3ac43737cdadddc15fb5fcf;hpb=f7ed79d23a47594e7834d66a8f14449796d4f3e6;p=linux-2.6.git diff --git a/drivers/net/sgiseeq.c b/drivers/net/sgiseeq.c index f95a5b022..a4614df38 100644 --- a/drivers/net/sgiseeq.c +++ b/drivers/net/sgiseeq.c @@ -3,9 +3,6 @@ * * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) */ - -#undef DEBUG - #include #include #include @@ -62,6 +59,8 @@ static char *sgiseeqstr = "SGI Seeq8003"; sp->tx_old + (SEEQ_TX_BUFFERS - 1) - sp->tx_new : \ sp->tx_old - sp->tx_new - 1) +#define DEBUG + struct sgiseeq_rx_desc { volatile struct hpc_dma_desc rdma; volatile signed int buf_vaddr; @@ -210,7 +209,7 @@ static int seeq_init_ring(struct net_device *dev) static struct sgiseeq_private *gpriv; static struct net_device *gdev; -static void sgiseeq_dump_rings(void) +void sgiseeq_dump_rings(void) { static int once; struct sgiseeq_rx_desc *r = gpriv->rx_desc; @@ -312,9 +311,9 @@ static inline void sgiseeq_rx(struct net_device *dev, struct sgiseeq_private *sp struct sgiseeq_regs *sregs) { struct sgiseeq_rx_desc *rd; - struct sk_buff *skb = NULL; + struct sk_buff *skb = 0; unsigned char pkt_status; - unsigned char *pkt_pointer = NULL; + unsigned char *pkt_pointer = 0; int len = 0; unsigned int orig_end = PREV_RX(sp->rx_new); @@ -516,6 +515,12 @@ static inline int sgiseeq_reset(struct net_device *dev) return 0; } +void sgiseeq_my_reset(void) +{ + printk("RESET!\n"); + sgiseeq_reset(gdev); +} + static int sgiseeq_start_xmit(struct sk_buff *skb, struct net_device *dev) { struct sgiseeq_private *sp = netdev_priv(dev);