diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2010-06-24 12:05:41 -0400 |
---|---|---|
committer | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2010-10-22 16:25:42 -0400 |
commit | 90f6881e6430ea7b38b9e0f9837719b1935616e0 (patch) | |
tree | 490291932ab87a62bd05519fa39496ef54068845 /arch/x86/pci/xen.c | |
parent | 2f065aef17b8d50a51a72451d03c7d7304249fb5 (diff) |
xen: add xen hvm acpi_register_gsi variant
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Acked-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'arch/x86/pci/xen.c')
-rw-r--r-- | arch/x86/pci/xen.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/pci/xen.c b/arch/x86/pci/xen.c index 08e3cdccdfa8..3a4ab0b4dcca 100644 --- a/arch/x86/pci/xen.c +++ b/arch/x86/pci/xen.c | |||
@@ -53,6 +53,12 @@ static int xen_hvm_register_pirq(u32 gsi, int triggering) | |||
53 | 53 | ||
54 | return irq; | 54 | return irq; |
55 | } | 55 | } |
56 | |||
57 | static int acpi_register_gsi_xen_hvm(struct device *dev, u32 gsi, | ||
58 | int trigger, int polarity) | ||
59 | { | ||
60 | return xen_hvm_register_pirq(gsi, trigger); | ||
61 | } | ||
56 | #endif | 62 | #endif |
57 | 63 | ||
58 | #if defined(CONFIG_PCI_MSI) | 64 | #if defined(CONFIG_PCI_MSI) |