aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/domctl.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2012-10-15 17:41:39 +0200
committerJan Beulich <jbeulich@suse.com>2012-10-15 17:41:39 +0200
commit8bf7206904251db928f085caa8ef92c41cea656d (patch)
tree55e1ff17b152d4fc2c65b56c2d05775aa0226b3c /xen/arch/x86/domctl.c
parent00485d573cc9a655ae7ce5d278a0cc27acf31a0f (diff)
downloadxen-8bf7206904251db928f085caa8ef92c41cea656d.tar.gz
xen-8bf7206904251db928f085caa8ef92c41cea656d.tar.bz2
xen-8bf7206904251db928f085caa8ef92c41cea656d.zip
IOMMU: remove vendor specific bits from generic code
- names of functions used independent of vendor should not have vendor specific names - vendor specific declarations should not live inn generic headers - other vendor specific items should not be used in generic code Signed-off-by: Jan Beulich <jbeulich@suse.com> Acked-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/arch/x86/domctl.c')
-rw-r--r--xen/arch/x86/domctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/arch/x86/domctl.c b/xen/arch/x86/domctl.c
index 24b317884e..bc60e0a96b 100644
--- a/xen/arch/x86/domctl.c
+++ b/xen/arch/x86/domctl.c
@@ -776,7 +776,7 @@ long arch_do_domctl(
if ( iommu_enabled )
{
spin_lock(&pcidevs_lock);
- ret = pt_irq_create_bind_vtd(d, bind);
+ ret = pt_irq_create_bind(d, bind);
spin_unlock(&pcidevs_lock);
}
if ( ret < 0 )
@@ -806,7 +806,7 @@ long arch_do_domctl(
if ( iommu_enabled )
{
spin_lock(&pcidevs_lock);
- ret = pt_irq_destroy_bind_vtd(d, bind);
+ ret = pt_irq_destroy_bind(d, bind);
spin_unlock(&pcidevs_lock);
}
if ( ret < 0 )