diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-10-17 23:42:38 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-10-17 23:42:38 +0000 |
commit | bfde9a5e08bbbd7d384adb3bfb70adeaa47659ed (patch) | |
tree | 405ed27db511b51e317b8c9b3cc459d36a27d180 /sys/arch/mips64/include | |
parent | 504633b3eac97c77e073af15b877798f75a45588 (diff) |
The dosparts member of cpu_disklabel was not used for any persistant
data. Eliminate it, and just use the data being read in while
processing MBR and EBR records.
Should be no functional change.
ok weingart@ deraadt@
Diffstat (limited to 'sys/arch/mips64/include')
-rw-r--r-- | sys/arch/mips64/include/disklabel.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/mips64/include/disklabel.h b/sys/arch/mips64/include/disklabel.h index d847519c48c..16d1a1cdbba 100644 --- a/sys/arch/mips64/include/disklabel.h +++ b/sys/arch/mips64/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.9 2006/10/03 01:37:22 krw Exp $ */ +/* $OpenBSD: disklabel.h,v 1.10 2006/10/17 23:42:37 krw Exp $ */ /* $NetBSD: disklabel.h,v 1.1 1995/02/13 23:07:34 cgd Exp $ */ /* @@ -149,11 +149,6 @@ struct sgilabel { struct cpu_disklabel { int labelsector; - union { - struct { - struct dos_partition dosparts[NDOSPART]; - } _i386; - } u; }; #endif /* _MACHINE_DISKLABEL_H_ */ |