From 3cdea73b1091e4847b3130bdd6ab3337f6df9490 Mon Sep 17 00:00:00 2001 From: cube Date: Thu, 5 Aug 2004 13:31:38 +0000 Subject: [PATCH] boothowto is already available through sys/systm.h, and is actually declared elsewhere; don't duplicate it. --- sys/arch/amd64/amd64/machdep.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/arch/amd64/amd64/machdep.c b/sys/arch/amd64/amd64/machdep.c index 65a3abe2c64c..339c65fe29d0 100644 --- a/sys/arch/amd64/amd64/machdep.c +++ b/sys/arch/amd64/amd64/machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.29 2004/06/16 10:13:46 fvdl Exp $ */ +/* $NetBSD: machdep.c,v 1.30 2004/08/05 13:31:38 cube Exp $ */ /*- * Copyright (c) 1996, 1997, 1998, 2000 The NetBSD Foundation, Inc. @@ -72,7 +72,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.29 2004/06/16 10:13:46 fvdl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.30 2004/08/05 13:31:38 cube Exp $"); #include "opt_user_ldt.h" #include "opt_ddb.h" @@ -183,7 +183,6 @@ struct mtrr_funcs *mtrr_funcs; int physmem; u_int64_t dumpmem_low; u_int64_t dumpmem_high; -int boothowto; int cpu_class; #define CPUID2MODEL(cpuid) (((cpuid) >> 4) & 15)