diff options
author | 2009-06-19 21:31:54 +0000 | |
---|---|---|
committer | 2009-06-19 21:31:54 +0000 | |
commit | c8f52bf72fe422d2782fe15047863b24de3f39b8 (patch) | |
tree | b687b1d7c9b5339c34961d7829cc15d014076be4 /sys/dev/pci/if_bge.c | |
parent | Quiet a gcc warning (diff) | |
download | wireguard-openbsd-c8f52bf72fe422d2782fe15047863b24de3f39b8.tar.xz wireguard-openbsd-c8f52bf72fe422d2782fe15047863b24de3f39b8.zip |
Allow bge(4) to recognize the revisions of the 57780 ASICs. From Brad.
Diffstat (limited to 'sys/dev/pci/if_bge.c')
-rw-r--r-- | sys/dev/pci/if_bge.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index d7177f3af99..4cfefcb64f4 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.275 2009/06/11 23:11:27 sthen Exp $ */ +/* $OpenBSD: if_bge.c,v 1.276 2009/06/19 21:31:54 naddy Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -362,6 +362,8 @@ static const struct bge_revision { { BGE_CHIPID_BCM5787_A2, "BCM5754/5787 A2" }, { BGE_CHIPID_BCM5906_A1, "BCM5906 A1" }, { BGE_CHIPID_BCM5906_A2, "BCM5906 A2" }, + { BGE_CHIPID_BCM57780_A0, "BCM57780 A0" }, + { BGE_CHIPID_BCM57780_A1, "BCM57780 A1" }, { 0, NULL } }; |