diff options
author | des <des@FreeBSD.org> | 2004-09-01 06:10:11 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2004-09-01 06:10:11 +0000 |
commit | 80bf38e921816f690ba642ba76e42b17f5141d66 (patch) | |
tree | 4c9fc3f86232bf52c5351050146a31f705264972 /sys/dev/bfe | |
parent | 6703db134608d1953b911a81784b3e83dcc59e74 (diff) | |
download | FreeBSD-src-80bf38e921816f690ba642ba76e42b17f5141d66.zip FreeBSD-src-80bf38e921816f690ba642ba76e42b17f5141d66.tar.gz |
Add PCI ID for the BCM4401-B0.
Submitted by: krion
MFC after: 3 days
Diffstat (limited to 'sys/dev/bfe')
-rw-r--r-- | sys/dev/bfe/if_bfe.c | 2 | ||||
-rw-r--r-- | sys/dev/bfe/if_bfereg.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/bfe/if_bfe.c b/sys/dev/bfe/if_bfe.c index 7699013..ba69c54 100644 --- a/sys/dev/bfe/if_bfe.c +++ b/sys/dev/bfe/if_bfe.c @@ -83,6 +83,8 @@ MODULE_DEPEND(bfe, miibus, 1, 1, 1); static struct bfe_type bfe_devs[] = { { BCOM_VENDORID, BCOM_DEVICEID_BCM4401, "Broadcom BCM4401 Fast Ethernet" }, + { BCOM_VENDORID, BCOM_DEVICEID_BCM4401B0, + "Broadcom BCM4401-B0 Fast Ethernet" }, { 0, 0, NULL } }; diff --git a/sys/dev/bfe/if_bfereg.h b/sys/dev/bfe/if_bfereg.h index c800890..10b26db 100644 --- a/sys/dev/bfe/if_bfereg.h +++ b/sys/dev/bfe/if_bfereg.h @@ -416,6 +416,7 @@ #define BCOM_VENDORID 0x14E4 #define BCOM_DEVICEID_BCM4401 0x4401 +#define BCOM_DEVICEID_BCM4401B0 0x170c #define PCI_SETBIT(dev, reg, x, s) \ pci_write_config(dev, reg, (pci_read_config(dev, reg, s) | (x)), s) |