diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2011-05-21 21:36:41 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2011-05-21 21:36:41 +0000 |
commit | 37f056dae990e0fb13cbb7886555f06c440959dd (patch) | |
tree | 993cf395668293c560936fc64eded0923f28d4a4 /sys/arch/alpha/pci | |
parent | 268eac02e72b98479d50556f721c8c445a2e4e0f (diff) |
Add pci_intr_map_msi() stub.
Diffstat (limited to 'sys/arch/alpha/pci')
-rw-r--r-- | sys/arch/alpha/pci/pci_machdep.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/alpha/pci/pci_machdep.h b/sys/arch/alpha/pci/pci_machdep.h index cbcd10a8fb7..9cc5cba318a 100644 --- a/sys/arch/alpha/pci/pci_machdep.h +++ b/sys/arch/alpha/pci/pci_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.h,v 1.24 2010/12/04 17:06:31 miod Exp $ */ +/* $OpenBSD: pci_machdep.h,v 1.25 2011/05/21 21:36:39 kettenis Exp $ */ /* $NetBSD: pci_machdep.h,v 1.6 1996/11/19 04:49:21 cgd Exp $ */ /* @@ -105,6 +105,7 @@ int alpha_sysctl_chipset(int *, u_int, char *, size_t *); (*(c)->pc_conf_write)((c)->pc_conf_v, (t), (r), (v)) #define pci_intr_map(pa, ihp) \ (*((pa)->pa_pc)->pc_intr_map)((pa), (ihp)) +#define pci_intr_map_msi(pa, ihp) (-1) #define pci_intr_string(c, ih) \ (*(c)->pc_intr_string)((c)->pc_intr_v, (ih)) #define pci_intr_line(c, ih) \ |