Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386/i386 Oops, forgot to fill in function pointer ...



details:   https://anonhg.NetBSD.org/src/rev/d664e80519ea
branches:  trunk
changeset: 509403:d664e80519ea
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu May 03 16:04:26 2001 +0000

description:
Oops, forgot to fill in function pointer in previous.

diffstat:

 sys/arch/i386/i386/machdep.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 446a7781c6b7 -r d664e80519ea sys/arch/i386/i386/machdep.c
--- a/sys/arch/i386/i386/machdep.c      Thu May 03 15:53:04 2001 +0000
+++ b/sys/arch/i386/i386/machdep.c      Thu May 03 16:04:26 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.438 2001/05/03 00:35:37 thorpej Exp $    */
+/*     $NetBSD: machdep.c,v 1.439 2001/05/03 16:04:26 thorpej Exp $    */
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2000 The NetBSD Foundation, Inc.
@@ -683,7 +683,7 @@
                                "K5 or K6"              /* Default */
                        },
                        NULL,
-                       NULL,
+                       amd_cpuid_cpu_cacheinfo,
                },
                /* Family 6 */
                {
@@ -695,7 +695,7 @@
                                "K7 (Athlon)"   /* Default */
                        },
                        NULL,
-                       NULL,
+                       amd_cpuid_cpu_cacheinfo,
                },
                /* Family > 6 */
                {
@@ -706,7 +706,7 @@
                                "Unknown K7 (Athlon)"   /* Default */
                        },
                        NULL,
-                       NULL,
+                       amd_cpuid_cpu_cacheinfo,
                } }
        },
        {



Home | Main Index | Thread Index | Old Index