Module Name: src
Committed By: dyoung
Date: Wed Aug 19 15:02:48 UTC 2009
Modified Files:
src/sys/arch/powerpc/isa: isa_machdep_common.c
Log Message:
genppc_isa_detach_hook() needs two arguments, the first an
isa_chipset_tag_t.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/powerpc/isa/isa_machdep_common.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/powerpc/isa/isa_machdep_common.c
diff -u src/sys/arch/powerpc/isa/isa_machdep_common.c:1.4 src/sys/arch/powerpc/isa/isa_machdep_common.c:1.5
--- src/sys/arch/powerpc/isa/isa_machdep_common.c:1.4 Wed Aug 19 14:44:48 2009
+++ src/sys/arch/powerpc/isa/isa_machdep_common.c Wed Aug 19 15:02:47 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: isa_machdep_common.c,v 1.4 2009/08/19 14:44:48 dyoung Exp $ */
+/* $NetBSD: isa_machdep_common.c,v 1.5 2009/08/19 15:02:47 dyoung Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isa_machdep_common.c,v 1.4 2009/08/19 14:44:48 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isa_machdep_common.c,v 1.5 2009/08/19 15:02:47 dyoung Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -84,7 +84,7 @@
}
void
-genppc_isa_detach_hook(device_t self)
+genppc_isa_detach_hook(isa_chipset_tag_t ic, device_t self)
{
/* Nothing to do. */