diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-06-18 06:53:43 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-06-18 06:53:43 +0000 |
commit | 5a8e6795ba55641aa74c0799616135b1bae28e7e (patch) | |
tree | 155ae2fca9514f4239e32aa214aca0eb29594b0c /sys/dev/pci/if_bge.c | |
parent | 03041716d9eb2e73be1d6364cd606c6a6be1238c (diff) |
recognise BCM5762 B0
from Brad
Diffstat (limited to 'sys/dev/pci/if_bge.c')
-rw-r--r-- | sys/dev/pci/if_bge.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 928cadc74a0..aef01b31f6b 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.395 2021/06/12 09:26:47 kettenis Exp $ */ +/* $OpenBSD: if_bge.c,v 1.396 2021/06/18 06:53:42 jsg Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -392,6 +392,7 @@ static const struct bge_revision { { BGE_CHIPID_BCM5761_A0, "BCM5761 A0" }, { BGE_CHIPID_BCM5761_A1, "BCM5761 A1" }, { BGE_CHIPID_BCM5762_A0, "BCM5762 A0" }, + { BGE_CHIPID_BCM5762_B0, "BCM5762 B0" }, { BGE_CHIPID_BCM5784_A0, "BCM5784 A0" }, { BGE_CHIPID_BCM5784_A1, "BCM5784 A1" }, /* the 5754 and 5787 share the same ASIC ID */ |