aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/hpet.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2011-09-07 10:37:20 +0100
committerJan Beulich <jbeulich@suse.com>2011-09-07 10:37:20 +0100
commit5326da0cc5f1603d5a4d89c78c87ae9ecd57b4b7 (patch)
tree0834cb751deabc3d437e25a1bed45c2dcee607c7 /xen/arch/x86/hpet.c
parentcd4ab341d27ee080ccad1cf85a366606a98dbc49 (diff)
downloadxen-5326da0cc5f1603d5a4d89c78c87ae9ecd57b4b7.tar.gz
xen-5326da0cc5f1603d5a4d89c78c87ae9ecd57b4b7.tar.bz2
xen-5326da0cc5f1603d5a4d89c78c87ae9ecd57b4b7.zip
x86: remove unnecessary indirection from irq_complete_move()'s sole parameter
Signed-off-by: Jan Beulich <jbeulich@suse.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 a641856323..9263dd2ee6 100644
--- a/xen/arch/x86/hpet.c
+++ b/xen/arch/x86/hpet.c
@@ -296,7 +296,7 @@ static void hpet_msi_ack(unsigned int irq)
{
struct irq_desc *desc = irq_to_desc(irq);
- irq_complete_move(&desc);
+ irq_complete_move(desc);
move_native_irq(irq);
ack_APIC_irq();
}