Adjust ncr53c9x_intr() prototype.
This commit is contained in:
parent
34b72dcf4a
commit
c0b35f72c2
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue