From ea081c8468250731ab2e576d7f0fd75175c0849b Mon Sep 17 00:00:00 2001 From: drochner Date: Mon, 6 Sep 2004 12:38:17 +0000 Subject: [PATCH] fix a botch in config_found->config_found_ia transition, by Havard Eidnes --- sys/arch/sandpoint/pci/pcib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/sandpoint/pci/pcib.c b/sys/arch/sandpoint/pci/pcib.c index bf2b00c4aa73..7a9cd94dd59c 100644 --- a/sys/arch/sandpoint/pci/pcib.c +++ b/sys/arch/sandpoint/pci/pcib.c @@ -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 -__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 #include @@ -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); }