Module Name:    src
Committed By:   jmcneill
Date:           Sun Nov 18 14:25:17 UTC 2018

Modified Files:
        src/sys/arch/evbarm/nslu2: nslu2_pci.c

Log Message:
Add xname argument to pc_intr_establish implementation


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/evbarm/nslu2/nslu2_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/evbarm/nslu2/nslu2_pci.c
diff -u src/sys/arch/evbarm/nslu2/nslu2_pci.c:1.7 src/sys/arch/evbarm/nslu2/nslu2_pci.c:1.8
--- src/sys/arch/evbarm/nslu2/nslu2_pci.c:1.7	Mon Mar 31 10:22:20 2014
+++ src/sys/arch/evbarm/nslu2/nslu2_pci.c	Sun Nov 18 14:25:17 2018
@@ -1,4 +1,4 @@
-/*      $NetBSD: nslu2_pci.c,v 1.7 2014/03/31 10:22:20 ozaki-r Exp $	*/
+/*      $NetBSD: nslu2_pci.c,v 1.8 2018/11/18 14:25:17 jmcneill Exp $	*/
 
 /*-
  * Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -56,7 +56,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nslu2_pci.c,v 1.7 2014/03/31 10:22:20 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nslu2_pci.c,v 1.8 2018/11/18 14:25:17 jmcneill Exp $");
 
 /*
  * Linksys NSLU2 PCI support.
@@ -132,7 +132,7 @@ nslu2_pci_intr_evcnt(void *v, pci_intr_h
 
 static void *
 nslu2_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 (ixp425_intr_establish(ih, ipl, func, arg));

Reply via email to