summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authordyoung <dyoung@NetBSD.org>2009-08-19 14:37:24 +0000
committerdyoung <dyoung@NetBSD.org>2009-08-19 14:37:24 +0000
commitbcefcac3f54372745093fde2fbdae877852d1cf1 (patch)
treec411aeb7db90fab0113e38c04ef04b5c79edff80 /sys
parentfedb853f62b13ccee2bffa7aaf70ddd63e027f93 (diff)
Define isa_detach_hook().
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/ibmnws/include/isa_machdep.h4
-rw-r--r--sys/arch/ofppc/include/isa_machdep.h4
-rw-r--r--sys/arch/prep/include/isa_machdep.h4
-rw-r--r--sys/arch/sandpoint/include/isa_machdep.h4
4 files changed, 12 insertions, 4 deletions
diff --git a/sys/arch/ibmnws/include/isa_machdep.h b/sys/arch/ibmnws/include/isa_machdep.h
index 532aa5f8808..d23bca04f35 100644
--- a/sys/arch/ibmnws/include/isa_machdep.h
+++ b/sys/arch/ibmnws/include/isa_machdep.h
@@ -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 @@ extern struct pic_ops *isa_pic;
/* 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) \
diff --git a/sys/arch/ofppc/include/isa_machdep.h b/sys/arch/ofppc/include/isa_machdep.h
index 5489403468d..05c25e7d252 100644
--- a/sys/arch/ofppc/include/isa_machdep.h
+++ b/sys/arch/ofppc/include/isa_machdep.h
@@ -1,4 +1,4 @@
-/* $NetBSD: isa_machdep.h,v 1.5 2008/04/28 20:23:30 martin Exp $ */
+/* $NetBSD: isa_machdep.h,v 1.6 2009/08/19 14:40:36 dyoung Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -46,6 +46,8 @@ void isa_outb(uint32_t, uint8_t);
/* 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) \
diff --git a/sys/arch/prep/include/isa_machdep.h b/sys/arch/prep/include/isa_machdep.h
index afae192c7c3..ba91c5750d6 100644
--- a/sys/arch/prep/include/isa_machdep.h
+++ b/sys/arch/prep/include/isa_machdep.h
@@ -1,4 +1,4 @@
-/* $NetBSD: isa_machdep.h,v 1.11 2008/04/28 20:23:33 martin Exp $ */
+/* $NetBSD: isa_machdep.h,v 1.12 2009/08/19 14:41:25 dyoung Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -49,6 +49,8 @@ extern int isa_pcmciamask;
/* 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) \
diff --git a/sys/arch/sandpoint/include/isa_machdep.h b/sys/arch/sandpoint/include/isa_machdep.h
index fc42332ee7c..cdc7af5cfea 100644
--- a/sys/arch/sandpoint/include/isa_machdep.h
+++ b/sys/arch/sandpoint/include/isa_machdep.h
@@ -1,4 +1,4 @@
-/* $NetBSD: isa_machdep.h,v 1.7 2008/04/28 20:23:34 martin Exp $ */
+/* $NetBSD: isa_machdep.h,v 1.8 2009/08/19 14:41:57 dyoung Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -43,6 +43,8 @@ extern struct pic_ops *isa_pic;
/* 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) \