diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-03-10 00:27:57 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-03-10 00:27:57 +0000 |
commit | 5f437aed7f0d5612e2854ddae179f910d35f9a35 (patch) | |
tree | 5c67123986539ea4ad6612af62e8729099408a75 /sys/dev/isa/if_an_isapnp.c | |
parent | f9a2d9938100b5ccc2345fa74a2bc4362511c7c1 (diff) |
ansi. no binary change.
Diffstat (limited to 'sys/dev/isa/if_an_isapnp.c')
-rw-r--r-- | sys/dev/isa/if_an_isapnp.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/sys/dev/isa/if_an_isapnp.c b/sys/dev/isa/if_an_isapnp.c index 28d1151c9f8..59ac74e66d9 100644 --- a/sys/dev/isa/if_an_isapnp.c +++ b/sys/dev/isa/if_an_isapnp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_an_isapnp.c,v 1.8 2006/01/30 11:41:00 jsg Exp $ */ +/* $OpenBSD: if_an_isapnp.c,v 1.9 2006/03/10 00:27:55 jsg Exp $ */ /* * Copyright (c) 2003 Michael Shalayeff @@ -59,17 +59,13 @@ struct cfattach an_isapnp_ca = { }; int -an_isapnp_match(parent, match, aux) - struct device *parent; - void *match, *aux; +an_isapnp_match(struct device *parent, void *match, void *aux) { return 1; } void -an_isapnp_attach(parent, self, aux) - struct device *parent, *self; - void *aux; +an_isapnp_attach(struct device *parent, struct device *self, void *aux) { struct an_softc *sc = (void *)self; struct isa_attach_args *ia = aux; |