summaryrefslogtreecommitdiffstats
path: root/sys/scsi
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-12-10 19:53:42 +0000
committerbde <bde@FreeBSD.org>1995-12-10 19:53:42 +0000
commitfe727807c4129e599e23638580b1ca69e95f68b0 (patch)
tree53fe30660d3bebd5749aa104ea2888f735d9aaad /sys/scsi
parent2c85bcd8ba44a34e1b64e95d46f18a3be4faf7b3 (diff)
downloadFreeBSD-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')
-rw-r--r--sys/scsi/cd.c4
-rw-r--r--sys/scsi/od.c4
-rw-r--r--sys/scsi/st.c4
3 files changed, 6 insertions, 6 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*/
diff --git a/sys/scsi/od.c b/sys/scsi/od.c
index 7fe37b4..3418dfe 100644
--- a/sys/scsi/od.c
+++ b/sys/scsi/od.c
@@ -28,7 +28,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: od.c,v 1.6 1995/12/08 11:18:45 julian Exp $
+ * $Id: od.c,v 1.7 1995/12/08 23:22:20 phk Exp $
*/
/*
@@ -126,7 +126,7 @@ static d_strategy_t odstrategy;
extern struct cdevsw od_cdevsw;
static struct bdevsw od_bdevsw =
{ odopen, odclose, odstrategy, odioctl, /*20*/
- nxdump, odsize, 0, "od", &od_cdevsw, -1 };
+ nodump, odsize, 0, "od", &od_cdevsw, -1 };
static struct cdevsw od_cdevsw =
{ odopen, odclose, rawread, rawwrite, /*70*/
diff --git a/sys/scsi/st.c b/sys/scsi/st.c
index a212b0a..a97c336 100644
--- a/sys/scsi/st.c
+++ b/sys/scsi/st.c
@@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
- * $Id: st.c,v 1.52 1995/12/10 01:47:34 bde Exp $
+ * $Id: st.c,v 1.53 1995/12/10 10:58:30 julian Exp $
*/
/*
@@ -176,7 +176,7 @@ d_strategy_t ststrategy;
#define BDEV_MAJOR 5
static struct bdevsw st_bdevsw =
{ stopen, stclose, ststrategy, stioctl, /*5*/
- nxdump, zerosize, 0 };
+ nodump, nopsize, 0 };
static struct cdevsw st_cdevsw =
{ stopen, stclose, rawread, rawwrite, /*14*/
OpenPOWER on IntegriCloud