Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/ia64/include com_isa uses isa_intr_establish_xname ...
details: https://anonhg.NetBSD.org/src/rev/8c3f59e15f96
branches: trunk
changeset: 352481:8c3f59e15f96
user: scole <scole%NetBSD.org@localhost>
date: Mon Apr 03 17:19:43 2017 +0000
description:
com_isa uses isa_intr_establish_xname now, fixes GENERIC compilation
diffstat:
sys/arch/ia64/include/isa_machdep.h | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diffs (20 lines):
diff -r 51ba68ebccc3 -r 8c3f59e15f96 sys/arch/ia64/include/isa_machdep.h
--- a/sys/arch/ia64/include/isa_machdep.h Mon Apr 03 14:08:37 2017 +0000
+++ b/sys/arch/ia64/include/isa_machdep.h Mon Apr 03 17:19:43 2017 +0000
@@ -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 @@
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_ */
Home |
Main Index |
Thread Index |
Old Index