Adjust ncr53c9x_intr() prototype.

This commit is contained in:
mycroft 2000-03-18 22:09:32 +00:00
parent 34b72dcf4a
commit c0b35f72c2
2 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ncr53c9x.c,v 1.41 2000/03/09 23:19:26 matt Exp $ */
/* $NetBSD: ncr53c9x.c,v 1.42 2000/03/18 22:09:32 mycroft Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -1414,9 +1414,10 @@ ncr53c9x_msgout(sc)
*/
int sdebug = 0;
int
ncr53c9x_intr(sc)
register struct ncr53c9x_softc *sc;
ncr53c9x_intr(arg)
void *arg;
{
register struct ncr53c9x_softc *sc = arg;
register struct ncr53c9x_ecb *ecb;
register struct scsipi_link *sc_link;
struct ncr53c9x_tinfo *ti;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ncr53c9xvar.h,v 1.19 2000/01/07 08:12:15 nisimura Exp $ */
/* $NetBSD: ncr53c9xvar.h,v 1.20 2000/03/18 22:09:33 mycroft Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -395,7 +395,7 @@ struct ncr53c9x_softc {
void ncr53c9x_attach __P((struct ncr53c9x_softc *, struct scsipi_device *));
int ncr53c9x_scsi_cmd __P((struct scsipi_xfer *));
void ncr53c9x_reset __P((struct ncr53c9x_softc *));
int ncr53c9x_intr __P((struct ncr53c9x_softc *));
int ncr53c9x_intr __P((void *));
extern int ncr53c9x_dmaselect;