patch-2.4.4 linux/drivers/net/de600.c
Next file: linux/drivers/net/de620.c
Previous file: linux/drivers/net/de4x5.c
Back to the patch index
Back to the overall index
- Lines: 33
- Date:
Thu Apr 19 09:34:52 2001
- Orig file:
v2.4.3/linux/drivers/net/de600.c
- Orig date:
Sat Mar 3 10:55:47 2001
diff -u --recursive --new-file v2.4.3/linux/drivers/net/de600.c linux/drivers/net/de600.c
@@ -1,4 +1,4 @@
-static const char *version =
+static const char version[] =
"de600.c: $Revision: 1.40 $, Bjorn Ekwall (bj0rn@blox.se)\n";
/*
* de600.c
@@ -265,14 +265,14 @@
/*
* D-Link driver variables:
*/
-static volatile int rx_page = 0;
+static volatile int rx_page;
#define TX_PAGES 2
static volatile int tx_fifo[TX_PAGES];
-static volatile int tx_fifo_in = 0;
-static volatile int tx_fifo_out = 0;
+static volatile int tx_fifo_in;
+static volatile int tx_fifo_out;
static volatile int free_tx_pages = TX_PAGES;
-static int was_down = 0;
+static int was_down;
/*
* Convenience macros/functions for D-Link adapter
@@ -597,7 +597,6 @@
}
skb = dev_alloc_skb(size+2);
- restore_flags(flags);
if (skb == NULL) {
printk("%s: Couldn't allocate a sk_buff of size %d.\n",
dev->name, size);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)