Skip to content

Commit

Permalink
lguest: fix crash lguest_time_init
Browse files Browse the repository at this point in the history
fe25c7f "x86: lguest: Convert to new irq chip functions" converted
enable_lguest_irq() to take a struct irq_data *, but didn't fix the one
internal caller.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
To: x86@kernel.org
  • Loading branch information
Rusty Russell committed Dec 16, 2010
1 parent b0c3844 commit bb6f1d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/lguest/boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ static void lguest_time_init(void)
clockevents_register_device(&lguest_clockevent);

/* Finally, we unblock the timer interrupt. */
enable_lguest_irq(0);
clear_bit(0, lguest_data.blocked_interrupts);
}

/*
Expand Down

0 comments on commit bb6f1d9

Please sign in to comment.