diff options
Diffstat (limited to 'sys/arch/mvmeppc/include/disklabel.h')
-rw-r--r-- | sys/arch/mvmeppc/include/disklabel.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/mvmeppc/include/disklabel.h b/sys/arch/mvmeppc/include/disklabel.h index f5cdc205ec5..f8ce2503b3a 100644 --- a/sys/arch/mvmeppc/include/disklabel.h +++ b/sys/arch/mvmeppc/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.6 2006/07/01 16:50:33 krw Exp $ */ +/* $OpenBSD: disklabel.h,v 1.7 2006/10/03 01:37:22 krw Exp $ */ /* * Copyright (c) 1994 Christopher G. Demetriou @@ -78,14 +78,10 @@ struct dos_partition { #define DOSPTYP_OPENBSD 0xa6 /* OpenBSD partition type */ #define DOSPTYP_NETBSD 0xa9 /* NetBSD partition type */ -#include <sys/dkbad.h> struct cpu_disklabel { struct dos_partition dosparts[NDOSPART]; - struct dkbad bad; }; -#define DKBAD(x) ((x)->bad) - /* Isolate the relevant bits to get sector and cylinder. */ #define DPSECT(s) ((s) & 0x3f) #define DPCYL(c, s) ((c) + (((s) & 0xc0) << 2)) |