diff options
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/autoconf.h | 6 | ||||
-rw-r--r-- | sys/arch/hppa/include/eisa_machdep.h | 4 | ||||
-rw-r--r-- | sys/arch/hppa/include/isa_machdep.h | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/hppa/include/autoconf.h b/sys/arch/hppa/include/autoconf.h index 6a7e7bc32ce..1a4d337feb4 100644 --- a/sys/arch/hppa/include/autoconf.h +++ b/sys/arch/hppa/include/autoconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.h,v 1.18 2003/03/29 01:08:15 mickey Exp $ */ +/* $OpenBSD: autoconf.h,v 1.19 2003/08/07 19:47:33 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -77,9 +77,9 @@ void pdc_scanbus(struct device *, struct confargs *, int); int mbprint(void *, const char *); int mbsubmatch(struct device *, void *, void *); void *cpu_intr_map(void *v, int pri, int irq, int (*handler)(void *), - void *arg, struct device *dv); + void *arg, const char *name); void *cpu_intr_establish(int pri, int irq, int (*handler)(void *), - void *arg, struct device *dv); + void *arg, const char *name); int clock_intr(void *); void dumpconf(void); diff --git a/sys/arch/hppa/include/eisa_machdep.h b/sys/arch/hppa/include/eisa_machdep.h index 3cf39603577..be5d3d7626d 100644 --- a/sys/arch/hppa/include/eisa_machdep.h +++ b/sys/arch/hppa/include/eisa_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: eisa_machdep.h,v 1.1 2002/12/20 01:56:32 mickey Exp $ */ +/* $OpenBSD: eisa_machdep.h,v 1.2 2003/08/07 19:47:33 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -47,7 +47,7 @@ struct hppa_eisa_chipset { int (*ec_intr_map)(void *, u_int, int *); const char *(*ec_intr_string)(void *, int); void *(*ec_intr_establish)(void *, int, int, int, - int (*)(void *), void *, char *); + int (*)(void *), void *, const char *); void (*ec_intr_disestablish)(void *, void *); }; diff --git a/sys/arch/hppa/include/isa_machdep.h b/sys/arch/hppa/include/isa_machdep.h index 7df071e5675..4320225f1c3 100644 --- a/sys/arch/hppa/include/isa_machdep.h +++ b/sys/arch/hppa/include/isa_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: isa_machdep.h,v 1.1 2002/12/20 01:56:32 mickey Exp $ */ +/* $OpenBSD: isa_machdep.h,v 1.2 2003/08/07 19:47:33 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -43,7 +43,7 @@ struct hppa_isa_chipset { void (*ic_attach_hook)(struct device *, struct device *, struct isabus_attach_args *); void *(*ic_intr_establish)(void *, int, int, int, - int (*)(void *), void *, char *); + int (*)(void *), void *, const char *); void (*ic_intr_disestablish)(void *, void *); int (*ic_intr_check)(void *, int, int); }; |