aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/irq.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2011-08-27 12:15:07 +0100
committerJan Beulich <jbeulich@novell.com>2011-08-27 12:15:07 +0100
commit32e447cde1d68777f15efd64f0d836e01646e4a3 (patch)
tree3d045ae193bf11b64b1584ddcfe33110207d4adf /xen/arch/x86/irq.c
parentde95a738fd9a540578a6361aed9e83c06397a161 (diff)
downloadxen-32e447cde1d68777f15efd64f0d836e01646e4a3.tar.gz
xen-32e447cde1d68777f15efd64f0d836e01646e4a3.tar.bz2
xen-32e447cde1d68777f15efd64f0d836e01646e4a3.zip
x86: drop unused parameter from msi_compose_msg() and setup_msi_irq()
This particularly eliminates the bogus passing of NULL by hpet.c. Signed-off-by: Jan Beulich <jbeulich@novell.com>
Diffstat (limited to 'xen/arch/x86/irq.c')
-rw-r--r--xen/arch/x86/irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/arch/x86/irq.c b/xen/arch/x86/irq.c
index 22de938a5f..f08137dd33 100644
--- a/xen/arch/x86/irq.c
+++ b/xen/arch/x86/irq.c
@@ -1670,7 +1670,7 @@ int map_domain_pirq(
&& !desc->chip_data->used_vectors )
desc->chip_data->used_vectors = &pdev->info.used_vectors;
set_domain_irq_pirq(d, irq, info);
- setup_msi_irq(pdev, msi_desc, irq);
+ setup_msi_irq(msi_desc, irq);
spin_unlock_irqrestore(&desc->lock, flags);
}
else