Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/iyonix/iyonix Add xname argument to pc_intr_establi...
details: https://anonhg.NetBSD.org/src/rev/775faf699b5e
branches: trunk
changeset: 994685:775faf699b5e
user: jmcneill <jmcneill%NetBSD.org@localhost>
date: Sun Nov 18 14:12:28 2018 +0000
description:
Add xname argument to pc_intr_establish implementation
diffstat:
sys/arch/iyonix/iyonix/iyonix_pci.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r 4967721c68d8 -r 775faf699b5e sys/arch/iyonix/iyonix/iyonix_pci.c
--- a/sys/arch/iyonix/iyonix/iyonix_pci.c Sun Nov 18 13:41:24 2018 +0000
+++ b/sys/arch/iyonix/iyonix/iyonix_pci.c Sun Nov 18 14:12:28 2018 +0000
@@ -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 @@
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 @@
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));
Home |
Main Index |
Thread Index |
Old Index