diff options
Diffstat (limited to 'sys/arch/armish/dev/iq80321_pci.c')
-rw-r--r-- | sys/arch/armish/dev/iq80321_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/armish/dev/iq80321_pci.c b/sys/arch/armish/dev/iq80321_pci.c index 382f96f0740..881d1a6cfa1 100644 --- a/sys/arch/armish/dev/iq80321_pci.c +++ b/sys/arch/armish/dev/iq80321_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iq80321_pci.c,v 1.9 2007/05/10 17:59:24 deraadt Exp $ */ +/* $OpenBSD: iq80321_pci.c,v 1.10 2009/08/22 02:54:50 mk Exp $ */ /* $NetBSD: iq80321_pci.c,v 1.5 2005/12/11 12:17:09 christos Exp $ */ /* @@ -58,7 +58,7 @@ int iq80321_pci_intr_map(struct pci_attach_args *, pci_intr_handle_t *); const char *iq80321_pci_intr_string(void *, pci_intr_handle_t); void *iq80321_pci_intr_establish(void *, pci_intr_handle_t, - int, int (*func)(void *), void *, char *); + int, int (*func)(void *), void *, const char *); void iq80321_pci_intr_disestablish(void *, void *); struct irq_map { @@ -268,7 +268,7 @@ iq80321_pci_intr_string(void *v, pci_intr_handle_t ih) void * iq80321_pci_intr_establish(void *v, pci_intr_handle_t ih, int ipl, - int (*func)(void *), void *arg, char *name) + int (*func)(void *), void *arg, const char *name) { return (i80321_intr_establish(ih, ipl, func, arg, name)); |