diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2005-01-14 01:06:17 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2005-01-14 01:06:17 +0000 |
commit | 80f5023c654738071de83ff2d565766f964a7385 (patch) | |
tree | 43a8b7847ed583aecd8e5a52e711c7bf8fafd951 | |
parent | aa862c90c54caa99b06cae7299a0e62bb9bab620 (diff) |
minor prototypes style; ok deraadt
-rw-r--r-- | sys/dev/cardbus/if_fxp_cardbus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/cardbus/if_fxp_cardbus.c b/sys/dev/cardbus/if_fxp_cardbus.c index f5ef1f53442..e32f3be3c58 100644 --- a/sys/dev/cardbus/if_fxp_cardbus.c +++ b/sys/dev/cardbus/if_fxp_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fxp_cardbus.c,v 1.9 2004/10/07 21:16:59 brad Exp $ */ +/* $OpenBSD: if_fxp_cardbus.c,v 1.10 2005/01/14 01:06:16 pvalchev Exp $ */ /* $NetBSD: if_fxp_cardbus.c,v 1.12 2000/05/08 18:23:36 thorpej Exp $ */ /* @@ -88,8 +88,8 @@ int fxp_cardbus_match(struct device *, void *, void *); void fxp_cardbus_attach(struct device *, struct device *, void *); -int fxp_cardbus_detach(struct device * self, int flags); -void fxp_cardbus_setup(struct fxp_softc * sc); +int fxp_cardbus_detach(struct device *, int); +void fxp_cardbus_setup(struct fxp_softc *); struct fxp_cardbus_softc { struct fxp_softc sc; |