diff options
| author | tron <tron@NetBSD.org> | 2000-07-15 19:59:27 +0000 |
|---|---|---|
| committer | tron <tron@NetBSD.org> | 2000-07-15 19:59:27 +0000 |
| commit | cfe61a3025e62fe0ec12aa0744c50397cd9ceccc (patch) | |
| tree | 4a7d1126a16b07a210066f581ff4a4702f0d85ff /sys/dev | |
| parent | 1d97a430c473157116f1c51a074504e01ac85836 (diff) | |
Un-__P'ify kernel prototypes.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pci/if_epic_pci.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/dev/pci/if_epic_pci.c b/sys/dev/pci/if_epic_pci.c index 4b6bafde7ec..6363ef6f2ba 100644 --- a/sys/dev/pci/if_epic_pci.c +++ b/sys/dev/pci/if_epic_pci.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_epic_pci.c,v 1.9 2000/07/15 10:32:36 tron Exp $ */ +/* $NetBSD: if_epic_pci.c,v 1.10 2000/07/15 19:59:27 tron Exp $ */ /*- * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc. @@ -100,8 +100,8 @@ struct epic_pci_softc { void *sc_ih; /* interrupt handle */ }; -int epic_pci_match __P((struct device *, struct cfdata *, void *)); -void epic_pci_attach __P((struct device *, struct device *, void *)); +int epic_pci_match(struct device *, struct cfdata *, void *); +void epic_pci_attach(struct device *, struct device *, void *); struct cfattach epic_pci_ca = { sizeof(struct epic_pci_softc), epic_pci_match, epic_pci_attach, @@ -116,8 +116,7 @@ const struct epic_pci_product { { 0, NULL }, }; -const struct epic_pci_product *epic_pci_lookup - __P((const struct pci_attach_args *)); +const struct epic_pci_product *epic_pci_lookup(const struct pci_attach_args *); const struct epic_pci_product * epic_pci_lookup(pa) |
