Module Name: src
Committed By: dyoung
Date: Wed Aug 19 15:02:05 UTC 2009
Modified Files:
src/sys/arch/prep/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.12 -r1.13 src/sys/arch/prep/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/prep/include/isa_machdep.h
diff -u src/sys/arch/prep/include/isa_machdep.h:1.12 src/sys/arch/prep/include/isa_machdep.h:1.13
--- src/sys/arch/prep/include/isa_machdep.h:1.12 Wed Aug 19 14:41:25 2009
+++ src/sys/arch/prep/include/isa_machdep.h Wed Aug 19 15:02:05 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: isa_machdep.h,v 1.12 2009/08/19 14:41:25 dyoung Exp $ */
+/* $NetBSD: isa_machdep.h,v 1.13 2009/08/19 15:02:05 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) \