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/i386/include/rbus_machdep.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/i386/include/rbus_machdep.h')
-rw-r--r-- | sys/arch/i386/include/rbus_machdep.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/include/rbus_machdep.h b/sys/arch/i386/include/rbus_machdep.h index 7bb855d1589..2808e44599c 100644 --- a/sys/arch/i386/include/rbus_machdep.h +++ b/sys/arch/i386/include/rbus_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rbus_machdep.h,v 1.1 2000/04/08 05:50:50 aaron Exp $ */ +/* $OpenBSD: rbus_machdep.h,v 1.2 2002/03/14 01:26:33 millert Exp $ */ /* $NetBSD: rbus_machdep.h,v 1.2 1999/10/15 06:43:05 haya Exp $ */ /* @@ -37,8 +37,8 @@ struct pci_attach_args; /* XXX */ -void _bus_space_unmap __P((bus_space_tag_t, bus_space_handle_t, - bus_size_t, bus_addr_t *)); +void _bus_space_unmap(bus_space_tag_t, bus_space_handle_t, + bus_size_t, bus_addr_t *); #define md_space_map(bt, physaddr, size, flags, bshp) \ _bus_space_map((bt), (physaddr), (size), (flags), (bshp)) @@ -47,7 +47,7 @@ void _bus_space_unmap __P((bus_space_tag_t, bus_space_handle_t, _bus_space_unmap((bt), (bsh), (size), (adrp)) -rbus_tag_t rbus_pccbb_parent_io __P((struct pci_attach_args *pa)); -rbus_tag_t rbus_pccbb_parent_mem __P((struct pci_attach_args *pa)); +rbus_tag_t rbus_pccbb_parent_io(struct pci_attach_args *pa); +rbus_tag_t rbus_pccbb_parent_mem(struct pci_attach_args *pa); #endif /* _ARCH_I386_I386_RBUS_MACHDEP_H_ */ |