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/arch/mvme88k/dev/vsvar.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/mvme88k/dev/vsvar.h')
-rw-r--r-- | sys/arch/mvme88k/dev/vsvar.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/arch/mvme88k/dev/vsvar.h b/sys/arch/mvme88k/dev/vsvar.h index 1b1022d5b51..d235caf7526 100644 --- a/sys/arch/mvme88k/dev/vsvar.h +++ b/sys/arch/mvme88k/dev/vsvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vsvar.h,v 1.4 2001/08/26 02:37:07 miod Exp $ */ +/* $OpenBSD: vsvar.h,v 1.5 2002/03/14 01:26:39 millert Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * Copyright (c) 1990 The Regents of the University of California. @@ -175,20 +175,20 @@ struct vs_softc { #define WQO_RFWQ 0x0020 /* report frozen work queue bit */ #define WQO_INIT 0x8000 /* work queue init bit */ -void vs_minphys __P((struct buf *bp)); -int vs_scsicmd __P((struct scsi_xfer *)); +void vs_minphys(struct buf *bp); +int vs_scsicmd(struct scsi_xfer *); /* * Scatter/gather functions */ -M328_SG vs_alloc_scatter_gather __P((void)); -void vs_dealloc_scatter_gather __P((M328_SG sg)); -void vs_link_scatter_gather_element __P((sg_list_element_t *element, +M328_SG vs_alloc_scatter_gather(void); +void vs_dealloc_scatter_gather(M328_SG sg); +void vs_link_scatter_gather_element(sg_list_element_t *element, register vm_offset_t phys_add, - register int len)); -void vs_link_scatter_gather_list __P((sg_list_element_t *list, + register int len); +void vs_link_scatter_gather_list(sg_list_element_t *list, register vm_offset_t phys_add, - register int elements)); -M328_SG vs_build_memory_structure __P((struct scsi_xfer *xs, M328_IOPB *iopb)); + register int elements); +M328_SG vs_build_memory_structure(struct scsi_xfer *xs, M328_IOPB *iopb); #endif /* _M328VAR_H */ |