summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConstantine A. Murenin <cnst@cvs.openbsd.org>2008-03-27 04:52:04 +0000
committerConstantine A. Murenin <cnst@cvs.openbsd.org>2008-03-27 04:52:04 +0000
commitec5829349d09e7c0da115de586ffd1209a70bbb2 (patch)
treea223296ea101669b8afcedd72a90c57f85228412
parentf7a4fed489aa8cf0a73c20466ff455ac36d5e7e1 (diff)
update the revision cpuid table, removing three duplicate ids from "JH-F"
and adding two missing ids for Mobile AMD Sempron rev DH-G2; tested todd
-rw-r--r--sys/dev/pci/kate.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/pci/kate.c b/sys/dev/pci/kate.c
index 129d04e5d1d..d09ea0fda14 100644
--- a/sys/dev/pci/kate.c
+++ b/sys/dev/pci/kate.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kate.c,v 1.1 2008/03/27 01:44:23 cnst Exp $ */
+/* $OpenBSD: kate.c,v 1.2 2008/03/27 04:52:03 cnst Exp $ */
/*
* Copyright (c) 2008 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru>
@@ -54,14 +54,14 @@
*/
static const struct {
const char rev[5];
- const pcireg_t cpuid[4];
+ const pcireg_t cpuid[5];
} kate_proc[] = {
- { "JH-F", { 0x00040F10, 0x00040F30, 0, 0 } }, /* F2, F3*/
- { "BH-F", { 0x00040FB0, 0x00040F80, 0, 0 } }, /* F2 */
- { "DH-F", { 0x00040FF0, 0x00050FF0, 0x00040FC0, 0 } }, /* F2, F3 */
- { "JH-F", { 0x00040F30, 0x000C0F10, 0x00040F30, 0 } }, /* F3 */
- { "BH-G", { 0x00060FB0, 0x00060F80, 0, 0 } }, /* G1, G2 */
- { "DH-G", { 0x00070FF0, 0x00060FF0, 0, 0 } } /* G1, G2 */
+ { "BH-F", { 0x00040FB0, 0x00040F80, 0, 0, 0 } }, /* F2 */
+ { "DH-F", { 0x00040FF0, 0x00050FF0, 0x00040FC0, 0, 0 } }, /* F2, F3 */
+ { "JH-F", { 0x00040F10, 0x00040F30, 0x000C0F10, 0, 0 } }, /* F2, F3 */
+ { "BH-G", { 0x00060FB0, 0x00060F80, 0, 0, 0 } }, /* G1, G2 */
+ { "DH-G", { 0x00070FF0, 0x00060FF0,
+ 0x00060FC0, 0x00070FC0, 0 } } /* G1, G2 */
};