From: briggs Date: Sat, 18 Jan 1997 16:18:32 +0000 (+0000) Subject: scsi->moreluns is a bitfield based on target--should be u_int16_t, now. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=3c3fc2ce5778a2df8643a328771b4bb172ab73c8;p=openbsd scsi->moreluns is a bitfield based on target--should be u_int16_t, now. --- diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h index 2804581ab98..bf3c60337a3 100644 --- a/sys/scsi/scsiconf.h +++ b/sys/scsi/scsiconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.h,v 1.10 1997/01/16 14:23:33 maja Exp $ */ +/* $OpenBSD: scsiconf.h,v 1.11 1997/01/18 16:18:32 briggs Exp $ */ /* $NetBSD: scsiconf.h,v 1.29 1996/03/19 03:07:50 mycroft Exp $ */ /* @@ -188,7 +188,7 @@ struct scsibus_softc { struct device sc_dev; struct scsi_link *adapter_link; /* prototype supplied by adapter */ struct scsi_link ***sc_link; - u_int8_t moreluns; + u_int16_t moreluns; u_int8_t sc_buswidth; };