fix a botch in config_found->config_found_ia transition,

by Havard Eidnes
This commit is contained in:
drochner 2004-09-06 12:38:17 +00:00
parent d676f9e5b0
commit ea081c8468
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcib.c,v 1.11 2004/08/30 15:05:18 drochner Exp $ */
/* $NetBSD: pcib.c,v 1.12 2004/09/06 12:38:17 drochner Exp $ */
/*-
* Copyright (c) 1996, 1998 The NetBSD Foundation, Inc.
@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.11 2004/08/30 15:05:18 drochner Exp $");
__KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.12 2004/09/06 12:38:17 drochner Exp $");
#include <sys/types.h>
#include <sys/param.h>
@ -128,5 +128,5 @@ pcib_callback(self)
iba.iba_dmat = &isa_bus_dma_tag;
#endif
config_found(&sc->sc_dev, "isabus", &iba, isabusprint);
config_found_ia(&sc->sc_dev, "isabus", &iba, isabusprint);
}