Module Name:    src
Committed By:   dyoung
Date:           Wed Aug 19 15:05:01 UTC 2009

Modified Files:
        src/sys/arch/xen/xen: isa_machdep.c

Log Message:
isa_detach_hook() needs two arguments, the first an isa_chipset_tag_t.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/xen/xen/isa_machdep.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/xen/xen/isa_machdep.c
diff -u src/sys/arch/xen/xen/isa_machdep.c:1.21 src/sys/arch/xen/xen/isa_machdep.c:1.22
--- src/sys/arch/xen/xen/isa_machdep.c:1.21	Tue Aug 18 17:02:01 2009
+++ src/sys/arch/xen/xen/isa_machdep.c	Wed Aug 19 15:05:01 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: isa_machdep.c,v 1.21 2009/08/18 17:02:01 dyoung Exp $	*/
+/*	$NetBSD: isa_machdep.c,v 1.22 2009/08/19 15:05:01 dyoung Exp $	*/
 /*	NetBSD isa_machdep.c,v 1.11 2004/06/20 18:04:08 thorpej Exp 	*/
 
 /*-
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.21 2009/08/18 17:02:01 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.22 2009/08/19 15:05:01 dyoung Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -221,7 +221,7 @@
 
 /* XXX share with x86 */
 void
-isa_detach_hook(device_t self)
+isa_detach_hook(isa_chipset_tag_t ic, device_t self)
 {
 	extern int isa_has_been_seen;
 

Reply via email to