diff options
Diffstat (limited to 'arch/x86/lguest/boot.c')
| -rw-r--r-- | arch/x86/lguest/boot.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index 65f0b8a47be..48ee4f9435f 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c @@ -582,7 +582,7 @@ static void __init lguest_init_IRQ(void)  	for (i = 0; i < LGUEST_IRQS; i++) {  		int vector = FIRST_EXTERNAL_VECTOR + i;  		if (vector != SYSCALL_VECTOR) { -			set_intr_gate(vector, interrupt[i]); +			set_intr_gate(vector, interrupt[vector]);  			set_irq_chip_and_handler_name(i, &lguest_irq_controller,  						      handle_level_irq,  						      "level");  |