Module Name: src Committed By: jmcneill Date: Sun Nov 18 14:12:28 UTC 2018
Modified Files: src/sys/arch/iyonix/iyonix: iyonix_pci.c Log Message: Add xname argument to pc_intr_establish implementation To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/arch/iyonix/iyonix/iyonix_pci.c 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/iyonix/iyonix/iyonix_pci.c diff -u src/sys/arch/iyonix/iyonix/iyonix_pci.c:1.8 src/sys/arch/iyonix/iyonix/iyonix_pci.c:1.9 --- src/sys/arch/iyonix/iyonix/iyonix_pci.c:1.8 Sat Mar 29 19:28:28 2014 +++ src/sys/arch/iyonix/iyonix/iyonix_pci.c Sun Nov 18 14:12:28 2018 @@ -1,4 +1,4 @@ -/* $NetBSD: iyonix_pci.c,v 1.8 2014/03/29 19:28:28 christos Exp $ */ +/* $NetBSD: iyonix_pci.c,v 1.9 2018/11/18 14:12:28 jmcneill Exp $ */ /* * Copyright (c) 2001, 2002 Wasabi Systems, Inc. @@ -40,7 +40,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: iyonix_pci.c,v 1.8 2014/03/29 19:28:28 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: iyonix_pci.c,v 1.9 2018/11/18 14:12:28 jmcneill Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -66,7 +66,7 @@ int iyonix_pci_intr_map(const struct pci const char *iyonix_pci_intr_string(void *, pci_intr_handle_t, char *, size_t); const struct evcnt *iyonix_pci_intr_evcnt(void *, pci_intr_handle_t); void *iyonix_pci_intr_establish(void *, pci_intr_handle_t, - int, int (*func)(void *), void *); + int, int (*func)(void *), void *, const char *); void iyonix_pci_intr_disestablish(void *, void *); void pci_conf_write_byte(pci_chipset_tag_t, pcitag_t, int, int); int pci_conf_read_byte(pci_chipset_tag_t, pcitag_t, int); @@ -148,7 +148,7 @@ iyonix_pci_intr_evcnt(void *v, pci_intr_ void * iyonix_pci_intr_establish(void *v, pci_intr_handle_t ih, int ipl, - int (*func)(void *), void *arg) + int (*func)(void *), void *arg, const char *xname) { return (i80321_intr_establish(ih, ipl, func, arg));