summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-02-13 22:48:15 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-02-13 22:48:15 +0000
commitba3a23106fe11c40d05b928e02445742eab02e89 (patch)
tree7c805a1d48ff757ba35c6a77d0316c97badff652
parentf5e7f26cbee0aa39b94e14d1be959ec10418c496 (diff)
No need to include <sys/dkbad.h> twice.
-rw-r--r--sys/arch/arm/include/disklabel.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/arm/include/disklabel.h b/sys/arch/arm/include/disklabel.h
index 28db2c8195b..f294c2643f1 100644
--- a/sys/arch/arm/include/disklabel.h
+++ b/sys/arch/arm/include/disklabel.h
@@ -1,5 +1,5 @@
-/* $OpenBSD: disklabel.h,v 1.1 2004/02/01 05:09:49 drahn Exp $ */
-/* $OpenBSD: disklabel.h,v 1.1 2004/02/01 05:09:49 drahn Exp $ */
+/* $OpenBSD: disklabel.h,v 1.2 2004/02/13 22:48:14 miod Exp $ */
+/* $OpenBSD: disklabel.h,v 1.2 2004/02/13 22:48:14 miod Exp $ */
/* $NetBSD: disklabel.h,v 1.2 2001/11/25 19:02:03 thorpej Exp $ */
/*
@@ -100,8 +100,6 @@ struct dos_partition {
#define DOSPTYP_OPENBSD 0xa6 /* OpenBSD partition type */
#define DOSPTYP_NETBSD 0xa9 /* NetBSD partition type */
-#include <sys/dkbad.h>
-
/* Isolate the relevant bits to get sector and cylinder. */
#define DPSECT(s) ((s) & 0x3f)
#define DPCYL(c, s) ((c) + (((s) & 0xc0) << 2))