diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-04-28 04:17:28 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-04-28 04:17:28 +0000 |
commit | 30da58af6e48926e94817ebbd57089fb473a1b72 (patch) | |
tree | 4303c182b5320414f1365dba9b2218bb3de9221e /sys/dev | |
parent | a4ab4cd1b53ad29a7cb6a3deb0b47f39d8aad62b (diff) |
Make this compile; was missing new first argument
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/eisa/aha1742.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/eisa/aha1742.c b/sys/dev/eisa/aha1742.c index 19bda5ff3b7..5de340e49a6 100644 --- a/sys/dev/eisa/aha1742.c +++ b/sys/dev/eisa/aha1742.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aha1742.c,v 1.5 1996/04/21 22:20:12 deraadt Exp $ */ +/* $OpenBSD: aha1742.c,v 1.6 1996/04/28 04:17:27 tholo Exp $ */ /* $NetBSD: aha1742.c,v 1.59 1996/04/09 22:47:00 cgd Exp $ */ /* @@ -510,7 +510,7 @@ ahbattach(parent, self, aux) #ifdef NEWCONFIG isa_establish(&ahb->sc_id, &ahb->sc_dev); #endif - ahb->sc_ih = eisa_intr_establish(ahb->sc_irq, IST_LEVEL, IPL_BIO, + ahb->sc_ih = eisa_intr_establish(NULL, ahb->sc_irq, IST_LEVEL, IPL_BIO, ahbintr, ahb, ahb->sc_dev.dv_xname); /* |