diff options
Diffstat (limited to 'sys/arch/alpha/pci/pci_up1000.c')
-rw-r--r-- | sys/arch/alpha/pci/pci_up1000.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/arch/alpha/pci/pci_up1000.c b/sys/arch/alpha/pci/pci_up1000.c index 6a1701d6d16..5422040842e 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.4 2001/06/25 22:02:08 csapuntz Exp $ */ +/* $OpenBSD: pci_up1000.c,v 1.5 2001/08/17 22:26:58 mickey Exp $ */ /* $NetBSD: pci_up1000.c,v 1.6 2000/12/28 22:59:07 sommerfeld Exp $ */ /*- @@ -68,6 +68,7 @@ int api_up1000_intr_map(void *, pcitag_t, int, int, pci_intr_handle_t *); const char *api_up1000_intr_string(void *, pci_intr_handle_t); +int api_up1000_intr_line(void *, pci_intr_handle_t); const struct evcnt *api_up1000_intr_evcnt(void *, pci_intr_handle_t); void *api_up1000_intr_establish(void *, pci_intr_handle_t, int, int (*func)(void *), void *, char *); @@ -86,6 +87,7 @@ pci_up1000_pickintr(struct irongate_config *icp) pc->pc_intr_v = icp; pc->pc_intr_map = api_up1000_intr_map; pc->pc_intr_string = api_up1000_intr_string; + pc->pc_intr_line = api_up1000_intr_line; #if 0 pc->pc_intr_evcnt = api_up1000_intr_evcnt; #endif @@ -159,6 +161,12 @@ api_up1000_intr_string(void *icv, pci_intr_handle_t ih) return sio_intr_string(NULL /*XXX*/, ih); } +int +api_up1000_intr_line(void *icv, pci_intr_handle_t ih) +{ + return sio_intr_line(NULL /*XXX*/, ih); +} + #if 0 const struct evcnt * api_up1000_intr_evcnt(void *icv, pci_intr_handle_t ih) |