CVS commit: src/sys/arch/ibmnws/include

2009-08-19 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Wed Aug 19 15:01:31 UTC 2009

Modified Files:
src/sys/arch/ibmnws/include: isa_machdep.h

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.5 -r1.6 src/sys/arch/ibmnws/include/isa_machdep.h

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/ibmnws/include/isa_machdep.h
diff -u src/sys/arch/ibmnws/include/isa_machdep.h:1.5 src/sys/arch/ibmnws/include/isa_machdep.h:1.6
--- src/sys/arch/ibmnws/include/isa_machdep.h:1.5	Wed Aug 19 14:37:24 2009
+++ src/sys/arch/ibmnws/include/isa_machdep.h	Wed Aug 19 15:01:30 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: isa_machdep.h,v 1.5 2009/08/19 14:37:24 dyoung Exp $	*/
+/*	$NetBSD: isa_machdep.h,v 1.6 2009/08/19 15:01:30 dyoung Exp $	*/
 
 /*-
  * Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -49,8 +49,8 @@
 /* function mappings */
 #define isa_attach_hook(p, s, iaa)	\
 	genppc_isa_attach_hook(p, s, iaa)
-#define isa_detach_hook(s)		\
-	genppc_isa_detach_hook(s)
+#define isa_detach_hook(c, s)		\
+	genppc_isa_detach_hook(c, s)
 #define isa_intr_evcnt(ic, irq)		\
 	genppc_isa_intr_evcnt(ic, irq)
 #define isa_intr_establish(ic, irq, type, level, fun, arg)		\



CVS commit: src/sys/arch/ibmnws/include

2009-08-19 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Wed Aug 19 14:37:24 UTC 2009

Modified Files:
src/sys/arch/ibmnws/include: isa_machdep.h

Log Message:
Define isa_detach_hook().


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/ibmnws/include/isa_machdep.h

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/ibmnws/include/isa_machdep.h
diff -u src/sys/arch/ibmnws/include/isa_machdep.h:1.4 src/sys/arch/ibmnws/include/isa_machdep.h:1.5
--- src/sys/arch/ibmnws/include/isa_machdep.h:1.4	Mon Apr 28 20:23:26 2008
+++ src/sys/arch/ibmnws/include/isa_machdep.h	Wed Aug 19 14:37:24 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: isa_machdep.h,v 1.4 2008/04/28 20:23:26 martin Exp $	*/
+/*	$NetBSD: isa_machdep.h,v 1.5 2009/08/19 14:37:24 dyoung Exp $	*/
 
 /*-
  * Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -49,6 +49,8 @@
 /* function mappings */
 #define isa_attach_hook(p, s, iaa)	\
 	genppc_isa_attach_hook(p, s, iaa)
+#define isa_detach_hook(s)		\
+	genppc_isa_detach_hook(s)
 #define isa_intr_evcnt(ic, irq)		\
 	genppc_isa_intr_evcnt(ic, irq)
 #define isa_intr_establish(ic, irq, type, level, fun, arg)		\