Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/dev/pci/if_bwi_pci.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/dev/pci/if_bwi_pci.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- src/sys/dev/pci/if_bwi_pci.c 2016/07/07 06:55:41 1.15 +++ src/sys/dev/pci/if_bwi_pci.c 2018/12/09 11:14:02 1.16 @@ -1,4 +1,4 @@ -/* $NetBSD: if_bwi_pci.c,v 1.15 2016/07/07 06:55:41 msaitoh Exp $ */ +/* $NetBSD: if_bwi_pci.c,v 1.16 2018/12/09 11:14:02 jdolecek Exp $ */ /* $OpenBSD: if_bwi_pci.c,v 1.6 2008/02/14 22:10:02 brad Exp $ */ /* @@ -24,7 +24,7 @@ #include -__KERNEL_RCSID(0, "$NetBSD: if_bwi_pci.c,v 1.15 2016/07/07 06:55:41 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_bwi_pci.c,v 1.16 2018/12/09 11:14:02 jdolecek Exp $"); #include #include @@ -146,7 +146,8 @@ bwi_pci_attach(device_t parent, device_t /* establish interrupt */ intrstr = pci_intr_string(psc->psc_pc, ih, intrbuf, sizeof(intrbuf)); - sc->sc_ih = pci_intr_establish(psc->psc_pc, ih, IPL_NET, bwi_intr, sc); + sc->sc_ih = pci_intr_establish_xname(psc->psc_pc, ih, IPL_NET, bwi_intr, + sc, device_xname(self)); if (sc->sc_ih == NULL) { aprint_error_dev(self, "could not establish interrupt"); if (intrstr != NULL)