diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/dev/ic/twe.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/ic/twe.c')
-rw-r--r-- | sys/dev/ic/twe.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/ic/twe.c b/sys/dev/ic/twe.c index 5cf3ce07293..d21227b62c1 100644 --- a/sys/dev/ic/twe.c +++ b/sys/dev/ic/twe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: twe.c,v 1.16 2002/01/31 23:15:35 mickey Exp $ */ +/* $OpenBSD: twe.c,v 1.17 2002/03/14 01:26:55 millert Exp $ */ /* * Copyright (c) 2000, 2001 Michael Shalayeff. All rights reserved. @@ -67,7 +67,7 @@ struct cfdriver twe_cd = { NULL, "twe", DV_DULL }; -int twe_scsi_cmd __P((struct scsi_xfer *)); +int twe_scsi_cmd(struct scsi_xfer *); struct scsi_adapter twe_switch = { twe_scsi_cmd, tweminphys, 0, 0, @@ -77,14 +77,14 @@ struct scsi_device twe_dev = { NULL, NULL, NULL, NULL }; -static __inline struct twe_ccb *twe_get_ccb __P((struct twe_softc *sc)); -static __inline void twe_put_ccb __P((struct twe_ccb *ccb)); -void twe_dispose __P((struct twe_softc *sc)); -int twe_cmd __P((struct twe_ccb *ccb, int flags, int wait)); -int twe_start __P((struct twe_ccb *ccb, int wait)); -int twe_complete __P((struct twe_ccb *ccb)); -int twe_done __P((struct twe_softc *sc, int idx)); -void twe_copy_internal_data __P((struct scsi_xfer *xs, void *v, size_t size)); +static __inline struct twe_ccb *twe_get_ccb(struct twe_softc *sc); +static __inline void twe_put_ccb(struct twe_ccb *ccb); +void twe_dispose(struct twe_softc *sc); +int twe_cmd(struct twe_ccb *ccb, int flags, int wait); +int twe_start(struct twe_ccb *ccb, int wait); +int twe_complete(struct twe_ccb *ccb); +int twe_done(struct twe_softc *sc, int idx); +void twe_copy_internal_data(struct scsi_xfer *xs, void *v, size_t size); static __inline struct twe_ccb * |