diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-25 14:50:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-25 14:50:39 +0000 |
commit | a5e71db4200419a89667776613c8d20037b99e18 (patch) | |
tree | 8a89997f7293ed7f583da511e69c7b87e958bc4c /sys/arch/vax | |
parent | 64037d5a97a74d5b4db7cd16e4c8379a80a0a997 (diff) |
rename cpu_dumpconf() to dumpconf(); no need to be different from other architectures
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/vax/autoconf.c | 6 | ||||
-rw-r--r-- | sys/arch/vax/vax/machdep.c | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/vax/vax/autoconf.c b/sys/arch/vax/vax/autoconf.c index def4cb270e3..e38c18d381a 100644 --- a/sys/arch/vax/vax/autoconf.c +++ b/sys/arch/vax/vax/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.26 2007/05/04 19:30:55 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.27 2007/05/25 14:50:38 deraadt Exp $ */ /* $NetBSD: autoconf.c,v 1.45 1999/10/23 14:56:05 ragge Exp $ */ /* @@ -63,7 +63,7 @@ #include <vax/bi/bireg.h> -void cpu_dumpconf(void); /* machdep.c */ +void dumpconf(void); /* machdep.c */ void gencnslask(void); void diskconf(void); @@ -84,7 +84,7 @@ cpu_configure() bootdv ? bootdv->dv_xname : "<unknown>"); setroot(bootdv, booted_partition, RB_USERREQ); - cpu_dumpconf(); + dumpconf(); /* * We're ready to start up. Clear CPU cold start flag. diff --git a/sys/arch/vax/vax/machdep.c b/sys/arch/vax/vax/machdep.c index 3859e55af67..8ca32824555 100644 --- a/sys/arch/vax/vax/machdep.c +++ b/sys/arch/vax/vax/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.87 2007/05/23 20:33:47 pvalchev Exp $ */ +/* $OpenBSD: machdep.c,v 1.88 2007/05/25 14:50:38 deraadt Exp $ */ /* $NetBSD: machdep.c,v 1.108 2000/09/13 15:00:23 thorpej Exp $ */ /* @@ -170,7 +170,7 @@ int vax_led_blink = 0; struct cpu_info cpu_info_store; -void cpu_dumpconf(void); +void dumpconf(void); void cpu_startup() @@ -306,7 +306,7 @@ long dumplo = 0; cpu_kcore_hdr_t cpu_kcore_hdr; void -cpu_dumpconf() +dumpconf() { int nblks; @@ -649,7 +649,7 @@ dumpsys() * configured... */ if (dumpsize == 0) { - cpu_dumpconf(); + dumpconf(); if (dumpsize == 0) return; } |