summaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-08-06 14:26:53 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-08-06 14:26:53 +0000
commitc1fb72af034fd49539274309e077944b65f7c5e9 (patch)
tree09efd4b4d55f12dc9a72820a7a22f17f277bd85f /sys/arch/amd64
parent4fef8cb8856d9106052f768eff3a79acf2aca52c (diff)
We do not need a char machine_arch[] constant.
ok deraadt@
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/amd64/machdep.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/machdep.c b/sys/arch/amd64/amd64/machdep.c
index bee315e6362..6a8a2746e9d 100644
--- a/sys/arch/amd64/amd64/machdep.c
+++ b/sys/arch/amd64/amd64/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.34 2005/08/01 16:18:43 deraadt Exp $ */
+/* $OpenBSD: machdep.c,v 1.35 2005/08/06 14:26:50 miod Exp $ */
/* $NetBSD: machdep.c,v 1.3 2003/05/07 22:58:18 fvdl Exp $ */
/*-
@@ -148,8 +148,7 @@ extern struct acpi_softc *acpi_softc;
#endif
/* the following is used externally (sysctl_hw) */
-char machine[] = "amd64"; /* cpu "architecture" */
-char machine_arch[] = "amd64"; /* machine == machine_arch */
+char machine[] = MACHINE;
#ifdef CPURESET_DELAY
int cpureset_delay = CPURESET_DELAY;