Module Name: src
Committed By: phx
Date: Sun Oct 14 13:38:13 UTC 2012
Modified Files:
src/sys/dev/ic: dp8390reg.h
Log Message:
ed_ring structure is no longer needed for compatibility, as the last
device driver using it (amiga/ed(4)) has been converted now.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/ic/dp8390reg.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/ic/dp8390reg.h
diff -u src/sys/dev/ic/dp8390reg.h:1.8 src/sys/dev/ic/dp8390reg.h:1.9
--- src/sys/dev/ic/dp8390reg.h:1.8 Sun Dec 11 12:21:26 2005
+++ src/sys/dev/ic/dp8390reg.h Sun Oct 14 13:38:13 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: dp8390reg.h,v 1.8 2005/12/11 12:21:26 christos Exp $ */
+/* $NetBSD: dp8390reg.h,v 1.9 2012/10/14 13:38:13 phx Exp $ */
/*
* National Semiconductor DS8390 NIC register definitions.
@@ -542,21 +542,6 @@ struct dp8390_ring {
};
/*
- * XXX For compatibility only! This needs to die when all drivers have
- * been converted to be front ends to the MI driver.
- */
-struct ed_ring {
-#if BYTE_ORDER == BIG_ENDIAN
- u_char next_packet; /* pointer to next packet */
- u_char rsr; /* receiver status */
-#else
- u_char rsr; /* receiver status */
- u_char next_packet; /* pointer to next packet */
-#endif
- u_short count; /* bytes in packet (length + 4) */
-};
-
-/*
* Common constants
*/
#define ED_PAGE_SIZE 256 /* Size of RAM pages in bytes */