diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-09-24 20:29:53 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-09-24 20:29:53 +0000 |
commit | 44a237e87da7122754d9e3e4a49435b04f9adde9 (patch) | |
tree | a980818326551ee756c1ad975ada021ecbaab205 /sys/arch/sparc/dev | |
parent | 8be112a8f0b1f6a31ef3e529d9864953eb2385ee (diff) |
Eliminate D_CHAIN, D_ECC and D_RAMDISK flags from disklabel. They were
not being used in the tree for anything obviously useful. Get it done
early so we can find if there are non-obvious uses out there.
ok deraadt@ beck@
Diffstat (limited to 'sys/arch/sparc/dev')
-rw-r--r-- | sys/arch/sparc/dev/presto.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/presto.c b/sys/arch/sparc/dev/presto.c index bcbcaac87b4..c8afd736c8f 100644 --- a/sys/arch/sparc/dev/presto.c +++ b/sys/arch/sparc/dev/presto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: presto.c,v 1.5 2006/08/14 01:04:58 krw Exp $ */ +/* $OpenBSD: presto.c,v 1.6 2006/09/24 20:29:52 krw Exp $ */ /* * Copyright (c) 2003, Miodrag Vallat. * All rights reserved. @@ -387,7 +387,6 @@ presto_getdisklabel(struct presto_softc *sc) strncpy(lp->d_packname, sc->sc_model, 16); lp->d_rpm = 3600; lp->d_interleave = 1; - lp->d_flags = D_RAMDISK; lp->d_partitions[RAW_PART].p_offset = 0; lp->d_partitions[RAW_PART].p_size = lp->d_secperunit; |