aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/hpet.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/hpet.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/hpet.c')
-rw-r--r--xen/arch/x86/hpet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/arch/x86/hpet.c b/xen/arch/x86/hpet.c
index f3a298fefc..dc92873311 100644
--- a/xen/arch/x86/hpet.c
+++ b/xen/arch/x86/hpet.c
@@ -342,7 +342,7 @@ static void __hpet_setup_msi_irq(unsigned int irq)
{
struct msi_msg msg;
- msi_compose_msg(NULL, irq, &msg);
+ msi_compose_msg(irq, &msg);
hpet_msi_write(irq, &msg);
}