diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1999-02-26 21:25:45 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1999-02-26 21:25:45 +0000 |
commit | 004b18a91803abee9d3721d108861a549d6bd7ab (patch) | |
tree | 0afc726f7b75919e7a8b234b72c4f0a4fb58cfaa /sys/dev/pci/if_rlreg.h | |
parent | f3cc3cd57f00259563b53b555b7e8cb27789c706 (diff) |
Sync with FreeBSD:
o fix multicast hash calculation (return the right set of bits)
o make sure ifp->if_snd.ifq_maxlen is initialized
o use RL_CMD_EMPTY_RXBUF instead of magic constant 1
o make sure the delta 8139 boards are setup correctly
Diffstat (limited to 'sys/dev/pci/if_rlreg.h')
-rw-r--r-- | sys/dev/pci/if_rlreg.h | 34 |
1 files changed, 27 insertions, 7 deletions
diff --git a/sys/dev/pci/if_rlreg.h b/sys/dev/pci/if_rlreg.h index d1b89e6e7b7..688cac6f20a 100644 --- a/sys/dev/pci/if_rlreg.h +++ b/sys/dev/pci/if_rlreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rlreg.h,v 1.6 1998/12/31 02:35:14 jason Exp $ */ +/* $OpenBSD: if_rlreg.h,v 1.7 1999/02/26 21:25:43 jason Exp $ */ /* * Copyright (c) 1997, 1998 @@ -31,7 +31,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD: if_rlreg.h,v 1.4 1998/12/10 19:02:07 wpaul Exp $ + * $FreeBSD: if_rlreg.h,v 1.5 1999/02/23 15:38:25 wpaul Exp $ */ /* @@ -371,22 +371,42 @@ struct rl_softc { #define RT_VENDORID 0x10EC /* - * Accton PCI vendor ID - */ -#define ACCTON_VENDORID 0x1113 - -/* * RealTek chip device IDs. */ #define RT_DEVICEID_8129 0x8129 #define RT_DEVICEID_8139 0x8139 /* + * Accton PCI vendor ID + */ +#define ACCTON_VENDORID 0x1113 + +/* * Accton MPX 5030/5038 device ID. */ #define ACCTON_DEVICEID_5030 0x1211 /* + * Delta Electronics Vendor ID. + */ +#define DELTA_VENDORID 0x1500 + +/* + * Delta device IDs. + */ +#define DELTA_DEVICEID_8139 0x1360 + +/* + * Addtron vendor ID. + */ +#define ADDTRON_VENDORID 0x4033 + +/* + * Addtron device IDs. + */ +#define ADDTRON_DEVICEID_8139 0x1360 + +/* * Texas Instruments PHY identifiers */ #define TI_PHY_VENDORID 0x4000 |