Module Name: src
Committed By: scole
Date: Mon Apr 3 17:19:43 UTC 2017
Modified Files:
src/sys/arch/ia64/include: isa_machdep.h
Log Message:
com_isa uses isa_intr_establish_xname now, fixes GENERIC compilation
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/ia64/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/ia64/include/isa_machdep.h
diff -u src/sys/arch/ia64/include/isa_machdep.h:1.2 src/sys/arch/ia64/include/isa_machdep.h:1.3
--- src/sys/arch/ia64/include/isa_machdep.h:1.2 Tue Oct 18 22:04:34 2016
+++ src/sys/arch/ia64/include/isa_machdep.h Mon Apr 3 17:19:43 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: isa_machdep.h,v 1.2 2016/10/18 22:04:34 jdolecek Exp $ */
+/* $NetBSD: isa_machdep.h,v 1.3 2017/04/03 17:19:43 scole Exp $ */
/*
* Copyright (c) 2009 KIYOHARA Takashi
* All rights reserved.
@@ -37,7 +37,8 @@ isa_intr_establish(isa_chipset_tag_t ic,
return intr_establish(irq, type, level, ih_func, ih_arg);
}
-void *isa_intr_establish_xname(isa_chipset_tag_t, int, int, int,
- int (*)(void *), void *, const char *);
+/* XXX - com_isa.c requires _xname now */
+#define isa_intr_establish_xname(ic, irq, type, level, fun, arg, xname) \
+ isa_intr_establish(ic, irq, type, level, fun, arg)
#endif /* _ISA_MACHDEP_H_ */