diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-10-07 22:05:52 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-10-07 22:05:52 +0000 |
commit | 2e68d567dfe01aeeb1fcf2072ef1a78e3ac55e7b (patch) | |
tree | f37481179d168d133d892695deb60f97e0fbef17 /sys/dev | |
parent | 4021e2f6b72e9d0358f5d30e4ab199f739f75f52 (diff) |
The BCM5703 ASIC ID is actually shared with the BCM5702 ASIC so
indicate so in the text strings. From Brad.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_bge.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 0a696dbd9a5..1ed55d75a8d 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.283 2009/10/02 18:32:40 sthen Exp $ */ +/* $OpenBSD: if_bge.c,v 1.284 2009/10/07 22:05:51 sthen Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -319,11 +319,12 @@ static const struct bge_revision { { BGE_CHIPID_BCM5701_B0, "BCM5701 B0" }, { BGE_CHIPID_BCM5701_B2, "BCM5701 B2" }, { BGE_CHIPID_BCM5701_B5, "BCM5701 B5" }, - { BGE_CHIPID_BCM5703_A0, "BCM5703 A0" }, - { BGE_CHIPID_BCM5703_A1, "BCM5703 A1" }, - { BGE_CHIPID_BCM5703_A2, "BCM5703 A2" }, - { BGE_CHIPID_BCM5703_A3, "BCM5703 A3" }, - { BGE_CHIPID_BCM5703_B0, "BCM5703 B0" }, + /* the 5702 and 5703 share the same ASIC ID */ + { BGE_CHIPID_BCM5703_A0, "BCM5702/5703 A0" }, + { BGE_CHIPID_BCM5703_A1, "BCM5702/5703 A1" }, + { BGE_CHIPID_BCM5703_A2, "BCM5702/5703 A2" }, + { BGE_CHIPID_BCM5703_A3, "BCM5702/5703 A3" }, + { BGE_CHIPID_BCM5703_B0, "BCM5702/5703 B0" }, { BGE_CHIPID_BCM5704_A0, "BCM5704 A0" }, { BGE_CHIPID_BCM5704_A1, "BCM5704 A1" }, { BGE_CHIPID_BCM5704_A2, "BCM5704 A2" }, |