diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-08-06 14:26:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-08-06 14:26:53 +0000 |
commit | c1fb72af034fd49539274309e077944b65f7c5e9 (patch) | |
tree | 09efd4b4d55f12dc9a72820a7a22f17f277bd85f /sys/arch/amd64 | |
parent | 4fef8cb8856d9106052f768eff3a79acf2aca52c (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.c | 5 |
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; |