diff options
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/vax/vax/findcpu.c | 6 | ||||
-rw-r--r-- | sys/arch/vax/vax/machdep.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/vax/vax/findcpu.c b/sys/arch/vax/vax/findcpu.c index 2bb46c01bc4..46bc18fe75b 100644 --- a/sys/arch/vax/vax/findcpu.c +++ b/sys/arch/vax/vax/findcpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: findcpu.c,v 1.3 2000/10/11 11:32:07 hugh Exp $ */ +/* $OpenBSD: findcpu.c,v 1.4 2001/01/28 02:24:25 hugh Exp $ */ /* $NetBSD: findcpu.c,v 1.5 1999/08/23 19:10:43 ragge Exp $ */ /* * Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden. @@ -49,8 +49,8 @@ int vax_cputype; /* highest byte of SID register */ int vax_bustype; /* holds/defines all busses on this machine */ int vax_boardtype; /* machine dependend, combination of SID and SIE */ -int vax_cpudata; /* contents of the SID register */ -int vax_siedata; /* contents of the SIE register */ +int vax_cpudata = 0; /* contents of the SID register */ +int vax_siedata = 0; /* contents of the SIE register */ int vax_confdata; /* machine dependend, configuration/setup data */ /* diff --git a/sys/arch/vax/vax/machdep.c b/sys/arch/vax/vax/machdep.c index 5c12d690d11..6c17c43e5ba 100644 --- a/sys/arch/vax/vax/machdep.c +++ b/sys/arch/vax/vax/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.27 2000/10/27 00:16:22 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.28 2001/01/28 02:24:24 hugh Exp $ */ /* $NetBSD: machdep.c,v 1.108 2000/09/13 15:00:23 thorpej Exp $ */ /* @@ -183,7 +183,7 @@ cpu_startup() * Good {morning,afternoon,evening,night}. * Also call CPU init on systems that need that. */ - printf("%s%s\n", version, cpu_model); + printf("%s%s [%08X %08X]\n", version, cpu_model, vax_cpudata, vax_siedata); if (dep_call->cpu_conf) (*dep_call->cpu_conf)(); |