diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-10-22 21:45:37 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-10-22 21:45:37 +0000 |
commit | 6cead5839119c0b2c113fb52000af87d5a1e8b03 (patch) | |
tree | d28d30a0336220644e8463c0602912133210afe9 /sys/dev | |
parent | 006944f979edfc93fb0e9cf511f889ae5191d231 (diff) |
recognize the BCM5715 A3 chipset.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_bge.c | 3 | ||||
-rw-r--r-- | sys/dev/pci/if_bgereg.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 07c4794ba4e..3f186c2b100 100644 --- a/sys/dev/pci/if_bge.c +++ b/sys/dev/pci/if_bge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bge.c,v 1.190 2006/10/17 22:28:07 brad Exp $ */ +/* $OpenBSD: if_bge.c,v 1.191 2006/10/22 21:45:36 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -350,6 +350,7 @@ static const struct bge_revision { { BGE_CHIPID_BCM5714_B3, "BCM5714 B3" }, { BGE_CHIPID_BCM5715_A0, "BCM5715 A0" }, { BGE_CHIPID_BCM5715_A1, "BCM5715 A1" }, + { BGE_CHIPID_BCM5715_A3, "BCM5715 A3" }, { BGE_CHIPID_BCM5787_A2, "BCM5787 A2" }, { BGE_CHIPID_BCM5906_A1, "BCM5906 A1" }, diff --git a/sys/dev/pci/if_bgereg.h b/sys/dev/pci/if_bgereg.h index 93d6318616b..ab5b8a21054 100644 --- a/sys/dev/pci/if_bgereg.h +++ b/sys/dev/pci/if_bgereg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bgereg.h,v 1.67 2006/10/19 10:55:56 tom Exp $ */ +/* $OpenBSD: if_bgereg.h,v 1.68 2006/10/22 21:45:36 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -276,6 +276,7 @@ #define BGE_CHIPID_BCM5714_B3 0x80030000 #define BGE_CHIPID_BCM5715_A0 0x90000000 #define BGE_CHIPID_BCM5715_A1 0x90010000 +#define BGE_CHIPID_BCM5715_A3 0x90030000 #define BGE_CHIPID_BCM5787_A2 0xb0020000 #define BGE_CHIPID_BCM5906_A1 0xc0010000 |