diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-04-27 09:25:27 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-04-27 09:25:27 +0000 |
commit | 72a95b89c00fa610615000d026b7b5f7e531d0af (patch) | |
tree | 236236c660b6f8a4d6c76f4d30979de37bfe156c /sys/dev/isa | |
parent | 60c4da1290d9babec8bf397b3ef5aa618341e709 (diff) |
Don't mix up parent and child.
ok dlg@
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/com_commulti.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/com_commulti.c b/sys/dev/isa/com_commulti.c index e4a551cc606..de586d980d3 100644 --- a/sys/dev/isa/com_commulti.c +++ b/sys/dev/isa/com_commulti.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com_commulti.c,v 1.3 2008/04/27 01:36:49 dlg Exp $ */ +/* $OpenBSD: com_commulti.c,v 1.4 2008/04/27 09:25:26 kettenis Exp $ */ /* * Copyright (c) 1997 - 1999, Jason Downs. All rights reserved. * @@ -107,7 +107,7 @@ com_commulti_probe(struct device *parent, void *match, void *aux) } void -com_commulti_attach(struct device *self, struct device *parent, void *aux) +com_commulti_attach(struct device *parent, struct device *self, void *aux) { struct commulti_attach_args *ca = aux; struct com_softc *sc = (void *)self; |