diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-12-11 01:37:22 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-12-11 01:37:22 +0000 |
commit | a5cc44ecd616a0d4bc29765642f9c7e5b89d41a5 (patch) | |
tree | 0addd4d5ad1c6b426652165549657143deee66d6 /sys/dev | |
parent | e48be307414230690c1a345f0aca9ac2e4bd77e8 (diff) |
recognize BCM5750 C1 on Ted's Fujitsu Lifebook S7000
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_bge.c | 6 | ||||
-rw-r--r-- | sys/dev/pci/if_bgereg.h | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index a82ba16f308..c99d24ff12e 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.114 2005/12/10 18:40:45 brad Exp $ */ +/* $OpenBSD: if_bge.c,v 1.115 2005/12/11 01:37:21 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -424,6 +424,10 @@ static const struct bge_revision { 0, "BCM5750 C0" }, + { BGE_CHIPID_BCM5750_C1, + 0, + "BCM5750 C1" }, + { BGE_CHIPID_BCM5714_A0, 0, "BCM5714 A0" }, diff --git a/sys/dev/pci/if_bgereg.h b/sys/dev/pci/if_bgereg.h index d13dfd9df73..c6da0c8b2bf 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.34 2005/12/08 01:00:47 brad Exp $ */ +/* $OpenBSD: if_bgereg.h,v 1.35 2005/12/11 01:37:21 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -256,6 +256,7 @@ #define BGE_CHIPID_BCM5750_B0 0x40100000 #define BGE_CHIPID_BCM5750_B1 0x41010000 #define BGE_CHIPID_BCM5750_C0 0x42000000 +#define BGE_CHIPID_BCM5750_C1 0x42010000 #define BGE_CHIPID_BCM5714_A0 0x50000000 #define BGE_CHIPID_BCM5752_A0 0x60000000 #define BGE_CHIPID_BCM5752_A1 0x60010000 |