diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-04-04 17:40:15 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-04-04 17:40:15 +0000 |
commit | c219c69e3b1ea67e0e3fb7c98fde17fa156dcf4a (patch) | |
tree | 6d7be668b12fd20ce4780a874cdb1972317e9b42 /sys | |
parent | df270920ef1fb43dcb57a022e498a7f772a3a0e4 (diff) |
Fix build after spc_scsi_cmd() prototype change.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hp300/dev/mb89352var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/mb89352var.h b/sys/arch/hp300/dev/mb89352var.h index ebf4e2fc9f5..b5e535f1e21 100644 --- a/sys/arch/hp300/dev/mb89352var.h +++ b/sys/arch/hp300/dev/mb89352var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mb89352var.h,v 1.5 2004/12/22 21:11:12 miod Exp $ */ +/* $OpenBSD: mb89352var.h,v 1.6 2010/04/04 17:40:14 miod Exp $ */ /* $NetBSD: mb89352var.h,v 1.6 2003/08/02 12:48:09 tsutsui Exp $ */ /* NecBSD: mb89352var.h,v 1.4 1998/03/14 07:31:22 kmatsuda Exp */ @@ -211,7 +211,7 @@ void spc_attach(struct spc_softc *); int spc_intr(void *); void spc_init(struct spc_softc *); void spc_sched(struct spc_softc *); -int spc_scsi_cmd(struct scsi_xfer *); +void spc_scsi_cmd(struct scsi_xfer *); void spc_reset(struct spc_softc *); #define SPC_ADDRESS(o) (sc->sc_regs + ((o) << 1) + 1) |