diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2007-05-02 21:50:15 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2007-05-02 21:50:15 +0000 |
commit | 84840e390c09a82a67468bf3ec687c443abf414b (patch) | |
tree | 1cff181114a3057d9b6f6354aecce26a6f25833e /sys/arch/alpha/pci/pci_up1000.c | |
parent | 4f0e642a927afc9eec6de18505643baf54fcc340 (diff) |
supply the real devicename to sio_intr_establish() instead a generic
platform interrupt string when establishing pciide interrupts
Diffstat (limited to 'sys/arch/alpha/pci/pci_up1000.c')
-rw-r--r-- | sys/arch/alpha/pci/pci_up1000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/pci/pci_up1000.c b/sys/arch/alpha/pci/pci_up1000.c index 35fea1fff73..cc8d15d87fb 100644 --- a/sys/arch/alpha/pci/pci_up1000.c +++ b/sys/arch/alpha/pci/pci_up1000.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_up1000.c,v 1.11 2006/06/15 20:08:29 brad Exp $ */ +/* $OpenBSD: pci_up1000.c,v 1.12 2007/05/02 21:50:14 martin Exp $ */ /* $NetBSD: pci_up1000.c,v 1.6 2000/12/28 22:59:07 sommerfeld Exp $ */ /*- @@ -206,7 +206,7 @@ api_up1000_pciide_compat_intr_establish(void *icv, struct device *dev, irq = PCIIDE_COMPAT_IRQ(chan); #if NSIO cookie = sio_intr_establish(NULL /*XXX*/, irq, IST_EDGE, IPL_BIO, - func, arg, "up 1000 irq"); + func, arg, dev->dv_xname); if (cookie == NULL) return (NULL); #endif |