diff options
author | tobez <tobez@FreeBSD.org> | 2005-08-05 08:19:12 +0000 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2005-08-05 08:19:12 +0000 |
commit | 57264641a657e5dd54eb5d9674fa4575921285b2 (patch) | |
tree | e8d8b14d1248dd2bdfcc0c02a1c642bfd8075998 | |
parent | 8a5d448587b06ecdfaf2c4627a8bba5246eec52a (diff) | |
download | FreeBSD-src-57264641a657e5dd54eb5d9674fa4575921285b2.zip FreeBSD-src-57264641a657e5dd54eb5d9674fa4575921285b2.tar.gz |
Recognize D-Link DGE-528(T) Gigabit as an re(4) device.
Submitted by: Andrus Nomm <andrus@members.ee>
PR: 76780
MFC After: 1 week
-rw-r--r-- | sys/dev/re/if_re.c | 2 | ||||
-rw-r--r-- | sys/pci/if_rlreg.h | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/sys/dev/re/if_re.c b/sys/dev/re/if_re.c index 61c0c89..40799c5 100644 --- a/sys/dev/re/if_re.c +++ b/sys/dev/re/if_re.c @@ -159,6 +159,8 @@ MODULE_DEPEND(re, miibus, 1, 1, 1); * Various supported device vendors/types and their names. */ static struct rl_type re_devs[] = { + { DLINK_VENDORID, DLINK_DEVICEID_528T, RL_HWREV_8169S, + "D-Link DGE-528(T) Gigabit Ethernet Adapter" }, { RT_VENDORID, RT_DEVICEID_8139, RL_HWREV_8139CPLUS, "RealTek 8139C+ 10/100BaseTX" }, { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169, diff --git a/sys/pci/if_rlreg.h b/sys/pci/if_rlreg.h index ba571c5..b8f7588 100644 --- a/sys/pci/if_rlreg.h +++ b/sys/pci/if_rlreg.h @@ -796,6 +796,11 @@ struct rl_softc { #define DLINK_DEVICEID_530TXPLUS 0x1300 /* + * D-Link DFE-5280T device ID + */ +#define DLINK_DEVICEID_528T 0x4300 + +/* * D-Link DFE-690TXD device ID */ #define DLINK_DEVICEID_690TXD 0x1340 |