Updated yet another ioctl, and put wst in LINT to inhibit further bitrot.

This commit is contained in:
Bruce Evans 1998-06-08 06:18:53 +00:00
parent 68bf8f9eea
commit ea0be99955
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36754
5 changed files with 16 additions and 7 deletions

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.435 1998/05/30 18:28:12 phk Exp $
# $Id: LINT,v 1.436 1998/06/05 22:39:45 julian Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -896,6 +896,9 @@ device wcd0
# IDE floppy driver - requires wdc controller and ATAPI option
device wfd0
# IDE tape driver - requires wdc controller and ATAPI option
device wst0
#
# Standard floppy disk controllers and floppy tapes: `fdc', `fd', and `ft'

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.435 1998/05/30 18:28:12 phk Exp $
# $Id: LINT,v 1.436 1998/06/05 22:39:45 julian Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -896,6 +896,9 @@ device wcd0
# IDE floppy driver - requires wdc controller and ATAPI option
device wfd0
# IDE tape driver - requires wdc controller and ATAPI option
device wst0
#
# Standard floppy disk controllers and floppy tapes: `fdc', `fd', and `ft'

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.435 1998/05/30 18:28:12 phk Exp $
# $Id: LINT,v 1.436 1998/06/05 22:39:45 julian Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -896,6 +896,9 @@ device wcd0
# IDE floppy driver - requires wdc controller and ATAPI option
device wfd0
# IDE tape driver - requires wdc controller and ATAPI option
device wst0
#
# Standard floppy disk controllers and floppy tapes: `fdc', `fd', and `ft'

View File

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: wst.c,v 1.3 1998/04/08 20:00:03 sos Exp $
* $Id: wst.c,v 1.4 1998/04/20 18:51:33 sos Exp $
*/
#include "wdc.h"
@ -578,7 +578,7 @@ wst_error(struct wst *t, struct atapires result)
}
int
wstioctl(dev_t dev, int cmd, caddr_t addr, int flag, struct proc *p)
wstioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p)
{
int lun = UNIT(dev);
int error = 0;

View File

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: wst.c,v 1.3 1998/04/08 20:00:03 sos Exp $
* $Id: wst.c,v 1.4 1998/04/20 18:51:33 sos Exp $
*/
#include "wdc.h"
@ -578,7 +578,7 @@ wst_error(struct wst *t, struct atapires result)
}
int
wstioctl(dev_t dev, int cmd, caddr_t addr, int flag, struct proc *p)
wstioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p)
{
int lun = UNIT(dev);
int error = 0;