diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-02-13 03:37:15 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-02-13 03:37:15 +0000 |
commit | 3fcbb5382e8d46c13e4ab5adb01da6ad75c6a227 (patch) | |
tree | b73a1c047c9704cdcac89e0438922e63920ef29b /sys/dev/pci | |
parent | af6b1bdfb55ad62be32eac3e36a007e267e892e3 (diff) |
Remove __P usage in sys that has crept back in.
'Looks fine' millert@, ok miod@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_sandrv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_sandrv.c b/sys/dev/pci/if_sandrv.c index 9d4b6f67cbe..3b03c3c0f44 100644 --- a/sys/dev/pci/if_sandrv.c +++ b/sys/dev/pci/if_sandrv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sandrv.c,v 1.6 2004/12/07 06:10:24 mcbride Exp $ */ +/* $OpenBSD: if_sandrv.c,v 1.7 2005/02/13 03:37:14 jsg Exp $ */ /*- * Copyright (c) 2001-2004 Sangoma Technologies (SAN) @@ -186,8 +186,8 @@ static sdlahw_t* sdla_aft_hw_select (sdlahw_card_t *, int, int, static void sdla_save_hw_probe (sdlahw_t*, int); /* SDLA PCI device relative entry point */ -int san_match __P((struct device *, void *, void *)); -void san_attach __P((struct device *, struct device *, void *)); +int san_match(struct device *, void *, void *); +void san_attach(struct device *, struct device *, void *); struct cfdriver san_cd = { |