summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2020-01-27 02:02:29 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2020-01-27 02:02:29 +0000
commit2795fa04c14f1296d35a85f223cf9cb76d175776 (patch)
treefc97b362bfceba1d78f31e5d664cffb4afd66df7 /sys/dev/ic
parentc545e7005dd13916ed9ec02cb3f4922cbac06006 (diff)
Prototypes should not name the parameters.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/twevar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/twevar.h b/sys/dev/ic/twevar.h
index 4fe62116691..11724b6e529 100644
--- a/sys/dev/ic/twevar.h
+++ b/sys/dev/ic/twevar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: twevar.h,v 1.11 2020/01/26 00:53:31 krw Exp $ */
+/* $OpenBSD: twevar.h,v 1.12 2020/01/27 02:02:28 krw Exp $ */
/*
* Copyright (c) 2000 Michael Shalayeff
@@ -87,6 +87,6 @@ struct twe_softc {
#define TWE_UNLOCK(sc, lock) splx(lock)
typedef int twe_lock_t;
-void twe_minphys(struct buf *bp, struct scsi_link *sl);
+void twe_minphys(struct buf *, struct scsi_link *);
int twe_attach(struct twe_softc *);
int twe_intr(void *);