diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-11-20 07:34:52 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-11-20 07:34:52 +0000 |
commit | 7305a2374355204e00312e8fc9ad302c266d58fe (patch) | |
tree | 474a5ea1cc6fc54c009b232560c400a305f2d42d /sys/scsi/scsiconf.h | |
parent | 93b1293e197234e716c04d7a400ff5dbd5864cd4 (diff) |
limit luns on usb
Diffstat (limited to 'sys/scsi/scsiconf.h')
-rw-r--r-- | sys/scsi/scsiconf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h index 3b70476a18c..45dceedc60f 100644 --- a/sys/scsi/scsiconf.h +++ b/sys/scsi/scsiconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.h,v 1.23 2000/07/06 03:37:10 mjacob Exp $ */ +/* $OpenBSD: scsiconf.h,v 1.24 2000/11/20 07:34:51 deraadt Exp $ */ /* $NetBSD: scsiconf.h,v 1.35 1997/04/02 02:29:38 mycroft Exp $ */ /* @@ -187,6 +187,7 @@ struct scsi_link { void *device_softc; /* needed for call to foo_start */ struct scsi_adapter *adapter; /* adapter entry points etc. */ void *adapter_softc; /* needed for call to foo_scsi_cmd */ + u_char maxlun; }; int scsiprint __P((void *, const char *)); |