diff options
author | bde <bde@FreeBSD.org> | 1995-12-10 19:53:42 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-12-10 19:53:42 +0000 |
commit | fe727807c4129e599e23638580b1ca69e95f68b0 (patch) | |
tree | 53fe30660d3bebd5749aa104ea2888f735d9aaad /sys/scsi/cd.c | |
parent | 2c85bcd8ba44a34e1b64e95d46f18a3be4faf7b3 (diff) | |
download | FreeBSD-src-fe727807c4129e599e23638580b1ca69e95f68b0.zip FreeBSD-src-fe727807c4129e599e23638580b1ca69e95f68b0.tar.gz |
Replaced nxdump by nodump (if the dump function gets called, then the
device must be configured, so ENXIO is a bogus errno).
Replaced zerosize by nopsize. zerosize was a temporary alias.
Diffstat (limited to 'sys/scsi/cd.c')
-rw-r--r-- | sys/scsi/cd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/cd.c b/sys/scsi/cd.c index 0db6bb4..460144f 100644 --- a/sys/scsi/cd.c +++ b/sys/scsi/cd.c @@ -14,7 +14,7 @@ * * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 * - * $Id: cd.c,v 1.49 1995/12/08 23:22:17 phk Exp $ + * $Id: cd.c,v 1.50 1995/12/10 10:58:20 julian Exp $ */ #define SPLCD splbio @@ -72,7 +72,7 @@ static d_strategy_t cdstrategy; extern struct cdevsw cd_cdevsw; static struct bdevsw cd_bdevsw = { cdopen, cdclose, cdstrategy, cdioctl, /*6*/ - nxdump, cdsize, 0, "cd", &cd_cdevsw, -1 }; + nodump, cdsize, 0, "cd", &cd_cdevsw, -1 }; static struct cdevsw cd_cdevsw = { cdopen, cdclose, rawread, nowrite, /*15*/ |