diff options
author | wpaul <wpaul@FreeBSD.org> | 2003-08-15 22:47:55 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 2003-08-15 22:47:55 +0000 |
commit | c82e620619bd439f2791e36af85fd7abd4e82fb9 (patch) | |
tree | 201d4f41bf31e01e6f6e13f0957daf52584bc62c /sys/pci | |
parent | e1eceb5931c86971fe8095a889e8e9aca3c6d54e (diff) | |
download | FreeBSD-src-c82e620619bd439f2791e36af85fd7abd4e82fb9.zip FreeBSD-src-c82e620619bd439f2791e36af85fd7abd4e82fb9.tar.gz |
Argh. Last commit only had the __FBSDID() fix. Really add the device ID
for the 8100 this time.
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/if_rl.c | 2 | ||||
-rw-r--r-- | sys/pci/if_rlreg.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c index ffd9a26..e06c055 100644 --- a/sys/pci/if_rl.c +++ b/sys/pci/if_rl.c @@ -200,6 +200,8 @@ static struct rl_type rl_devs[] = { "RealTek 8169 10/100/1000BaseTX" }, { RT_VENDORID, RT_DEVICEID_8138, RL_8139, "RealTek 8139 10/100BaseTX CardBus" }, + { RT_VENDORID, RT_DEVICEID_8100, RL_8139, + "RealTek 8100 10/100BaseTX" }, { ACCTON_VENDORID, ACCTON_DEVICEID_5030, RL_8139, "Accton MPX 5030/5038 10/100BaseTX" }, { DELTA_VENDORID, DELTA_DEVICEID_8139, RL_8139, diff --git a/sys/pci/if_rlreg.h b/sys/pci/if_rlreg.h index 5ca6368..0f43fe8 100644 --- a/sys/pci/if_rlreg.h +++ b/sys/pci/if_rlreg.h @@ -697,6 +697,7 @@ struct rl_softc { #define RT_DEVICEID_8138 0x8138 #define RT_DEVICEID_8139 0x8139 #define RT_DEVICEID_8169 0x8169 +#define RT_DEVICEID_8100 0x8100 #define RT_REVID_8139CPLUS 0x20 |