summaryrefslogtreecommitdiffstats
path: root/sys/scsi/st.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>1996-02-19 09:36:23 +0000
committerjulian <julian@FreeBSD.org>1996-02-19 09:36:23 +0000
commit0b83253216562ca9f5547699c565d93e3af31e0e (patch)
treef1b8833ad45a7181a3f8b235241293995de54ba5 /sys/scsi/st.c
parent82e0bf375917b8125eb3df505960ad513b297771 (diff)
downloadFreeBSD-src-0b83253216562ca9f5547699c565d93e3af31e0e.zip
FreeBSD-src-0b83253216562ca9f5547699c565d93e3af31e0e.tar.gz
cosmetic fixes plus bring the cdevsw and bdevsw entries
into line with the new form.
Diffstat (limited to 'sys/scsi/st.c')
-rw-r--r--sys/scsi/st.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/sys/scsi/st.c b/sys/scsi/st.c
index 7aaf62a..c227af9 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.60 1996/02/03 13:31:13 joerg Exp $
+ * $Id: st.c,v 1.61 1996/02/08 06:23:49 pst Exp $
*/
/*
@@ -176,31 +176,33 @@ static d_strategy_t ststrategy;
#define CDEV_MAJOR 14
#define BDEV_MAJOR 5
+extern struct cdevsw st_cdevsw; /* hold off the complaints for a second */
static struct bdevsw st_bdevsw =
{ stopen, stclose, ststrategy, stioctl, /*5*/
- nodump, nopsize, 0 };
+ nodump, nopsize, 0, "st", &st_cdevsw, -1 };
static struct cdevsw st_cdevsw =
{ stopen, stclose, rawread, rawwrite, /*14*/
stioctl, nostop, nullreset, nodevtotty,/* st */
- seltrue, nommap, ststrategy };
+ seltrue, nommap, ststrategy, "st",
+ &st_bdevsw, -1 };
SCSI_DEVICE_ENTRIES(st)
static struct scsi_device st_switch =
{
- st_interpret_sense, /* check errors with us first */
- ststart, /* we have a queue, and this is how we service it */
- NULL,
- NULL, /* use the default 'done' routine */
- "st",
- 0,
+ st_interpret_sense, /* check errors with us first */
+ ststart, /* we have a queue, and this is how we service it */
+ NULL,
+ NULL, /* use the default 'done' routine */
+ "st",
+ 0,
{0, 0},
0, /* Link flags */
stattach,
"Sequential-Access",
stopen,
- sizeof(struct scsi_data),
+ sizeof(struct scsi_data),
T_SEQUENTIAL,
stunit,
stsetunit,
OpenPOWER on IntegriCloud