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/pci/bktr | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/pci/bktr')
-rw-r--r-- | sys/dev/pci/bktr/bktr_os.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/pci/bktr/bktr_os.c b/sys/dev/pci/bktr/bktr_os.c index 2d32cb85a06..9526baaec89 100644 --- a/sys/dev/pci/bktr/bktr_os.c +++ b/sys/dev/pci/bktr/bktr_os.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bktr_os.c,v 1.8 2002/01/23 18:41:07 mickey Exp $ */ +/* $OpenBSD: bktr_os.c,v 1.9 2002/03/14 01:27:00 millert Exp $ */ /* $FreeBSD: src/sys/dev/bktr/bktr_os.c,v 1.20 2000/10/20 08:16:53 roger Exp $ */ /* @@ -1302,23 +1302,23 @@ static int bktr_intr(void *arg) { return common_bktr_intr(arg); } #define bktr_mmap bktrmmap #ifdef __OpenBSD__ -int bktr_open __P((dev_t, int, int, struct proc *)); -int bktr_close __P((dev_t, int, int, struct proc *)); -int bktr_read __P((dev_t, struct uio *, int)); -int bktr_write __P((dev_t, struct uio *, int)); -int bktr_ioctl __P((dev_t, ioctl_cmd_t, caddr_t, int, struct proc *)); -paddr_t bktr_mmap __P((dev_t, off_t, int)); +int bktr_open(dev_t, int, int, struct proc *); +int bktr_close(dev_t, int, int, struct proc *); +int bktr_read(dev_t, struct uio *, int); +int bktr_write(dev_t, struct uio *, int); +int bktr_ioctl(dev_t, ioctl_cmd_t, caddr_t, int, struct proc *); +paddr_t bktr_mmap(dev_t, off_t, int); #endif vm_offset_t vm_page_alloc_contig(vm_offset_t, vm_offset_t, vm_offset_t, vm_offset_t); #if defined(__OpenBSD__) -static int bktr_probe __P((struct device *, void *, void *)); +static int bktr_probe(struct device *, void *, void *); #else -static int bktr_probe __P((struct device *, struct cfdata *, void *)); +static int bktr_probe(struct device *, struct cfdata *, void *); #endif -static void bktr_attach __P((struct device *, struct device *, void *)); +static void bktr_attach(struct device *, struct device *, void *); struct cfattach bktr_ca = { sizeof(struct bktr_softc), bktr_probe, bktr_attach |