patch-2.2.17 linux/drivers/net/de4x5.c
Next file: linux/drivers/net/dmfe.c
Previous file: linux/drivers/net/comx.c
Back to the patch index
Back to the overall index
- Lines: 49
- Date:
Mon Sep 4 18:39:19 2000
- Orig file:
v2.2.16/drivers/net/de4x5.c
- Orig date:
Mon Sep 4 18:37:25 2000
diff -u --recursive --new-file v2.2.16/drivers/net/de4x5.c linux/drivers/net/de4x5.c
@@ -379,8 +379,7 @@
Fix bug in pci_probe() for 64 bit systems reported
by <belliott@accessone.com>.
0.533 9-Jan-98 Fix more 64 bit bugs reported by <jal@cs.brown.edu>.
- 0.534 24-Jan-98 Fix last (?) endian bug from
- <Geert.Uytterhoeven@cs.kuleuven.ac.be>
+ 0.534 24-Jan-98 Fix last (?) endian bug from <geert@linux-m68k.org>
0.535 21-Feb-98 Fix Ethernet Address PROM reset bug for DC21040.
0.536 21-Mar-98 Change pci_probe() to use the pci_dev structure.
**Incompatible with 2.0.x from here.**
@@ -653,12 +652,20 @@
#define ALIGN64 ((u_long)64 - 1) /* 16 longword align */
#define ALIGN128 ((u_long)128 - 1) /* 32 longword align */
+#ifndef __powerpc__
#define ALIGN ALIGN32 /* Keep the DC21040 happy... */
#define CACHE_ALIGN CAL_16LONG
#define DESC_SKIP_LEN DSL_0 /* Must agree with DESC_ALIGN */
/*#define DESC_ALIGN u32 dummy[4]; / * Must agree with DESC_SKIP_LEN */
#define DESC_ALIGN
+#else /* __powerpc__ */
+#define ALIGN ALIGN32 /* Keep the DC21040 happy... */
+#define CACHE_ALIGN CAL_8LONG
+#define DESC_SKIP_LEN DSL_4 /* Must agree with DESC_ALIGN */
+#define DESC_ALIGN u32 dummy[4]; /* Must agree with DESC_SKIP_LEN */
+#endif /* __powerpc__ */
+
#ifndef DEC_ONLY /* See README.de4x5 for using this */
static int dec_only = 0;
#else
@@ -763,6 +770,9 @@
struct de4x5_private {
char adapter_name[80]; /* Adapter name */
u_long interrupt; /* Aligned ISR flag */
+#ifdef __powerpc__
+ u_long dummy[3]; /* Keep rx_ring 32-byte aligned */
+#endif
struct de4x5_desc rx_ring[NUM_RX_DESC]; /* RX descriptor ring */
struct de4x5_desc tx_ring[NUM_TX_DESC]; /* TX descriptor ring */
struct sk_buff *tx_skb[NUM_TX_DESC]; /* TX skb for freeing when sent */
@@ -3231,6 +3241,7 @@
case ANS:
lp->media = ANS;
+ lp->fdx = lp->params.fdx;
break;
default:
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)