diff options
author | Dimitry Andric <dim@cvs.openbsd.org> | 2006-11-29 16:03:01 +0000 |
---|---|---|
committer | Dimitry Andric <dim@cvs.openbsd.org> | 2006-11-29 16:03:01 +0000 |
commit | d1d6b341ab194119b888009a75aa71e42b2877f2 (patch) | |
tree | 69f94faea8561de312b7a0ff091c4121c64af634 /sys/arch/i386/pci/ichpcib.c | |
parent | f001ab3a468c6f56fe4a3b27d02b90216bd5dd44 (diff) |
Fix cpu_model string screwup.
Diffstat (limited to 'sys/arch/i386/pci/ichpcib.c')
-rw-r--r-- | sys/arch/i386/pci/ichpcib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/pci/ichpcib.c b/sys/arch/i386/pci/ichpcib.c index fd3e5274223..99f4561528c 100644 --- a/sys/arch/i386/pci/ichpcib.c +++ b/sys/arch/i386/pci/ichpcib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichpcib.c,v 1.13 2006/11/28 11:31:34 deraadt Exp $ */ +/* $OpenBSD: ichpcib.c,v 1.14 2006/11/29 16:03:00 dim Exp $ */ /* * Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org> * @@ -81,7 +81,7 @@ struct cfdriver ichpcib_cd = { }; #ifndef SMALL_KERNEL -extern char *cpu_model; +extern char cpu_model[]; static const char p4hint[] = "Mobile Intel(R) Pentium(R) 4"; static void *ichss_cookie; /* XXX */ extern int setperf_prio; |