diff options
author | phk <phk@FreeBSD.org> | 2003-01-03 08:56:54 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-01-03 08:56:54 +0000 |
commit | e5c115f5a6ccf0d39d04233dcc9cb32705c951ee (patch) | |
tree | 9a0d591da90201a7f2e3e33a0e653f489eab591b /sbin/ccdconfig | |
parent | fac5fc844d9bad89c2653c1f4d2fcd054adabfe0 (diff) | |
download | FreeBSD-src-e5c115f5a6ccf0d39d04233dcc9cb32705c951ee.zip FreeBSD-src-e5c115f5a6ccf0d39d04233dcc9cb32705c951ee.tar.gz |
Remove CCDF_SWAP and CCDF_PARITY. They have never been implemented.
Diffstat (limited to 'sbin/ccdconfig')
-rw-r--r-- | sbin/ccdconfig/ccdconfig.8 | 2 | ||||
-rw-r--r-- | sbin/ccdconfig/ccdconfig.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/sbin/ccdconfig/ccdconfig.8 b/sbin/ccdconfig/ccdconfig.8 index 58a2727..29b3e66 100644 --- a/sbin/ccdconfig/ccdconfig.8 +++ b/sbin/ccdconfig/ccdconfig.8 @@ -103,10 +103,8 @@ of strings, or the word .Dq none . The flags are as follows: .Bd -unfilled -offset indent -CCDF_SWAP 0x01 Interleave should be dmmax CCDF_UNIFORM 0x02 Use uniform interleave CCDF_MIRROR 0x04 Support mirroring -CCDF_PARITY 0x08 Support parity (not implemented yet) .Ed .Pp The format in the diff --git a/sbin/ccdconfig/ccdconfig.c b/sbin/ccdconfig/ccdconfig.c index 832c3a4..3e27f02 100644 --- a/sbin/ccdconfig/ccdconfig.c +++ b/sbin/ccdconfig/ccdconfig.c @@ -66,10 +66,8 @@ struct flagval { char *fv_flag; int fv_val; } flagvaltab[] = { - { "CCDF_SWAP", CCDF_SWAP }, { "CCDF_UNIFORM", CCDF_UNIFORM }, { "CCDF_MIRROR", CCDF_MIRROR }, - { "CCDF_PARITY", CCDF_PARITY }, { NULL, 0 }, }; |