Explorar el Código

x86: lguest: Use new irq allocator

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Ingo Molnar <mingo@elte.hu>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Thomas Gleixner hace 14 años
padre
commit
c2f31c37b7
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      arch/x86/lguest/boot.c

+ 2 - 2
arch/x86/lguest/boot.c

@@ -838,12 +838,12 @@ static void __init lguest_init_IRQ(void)
  * rather than set them in lguest_init_IRQ we are called here every time an
  * rather than set them in lguest_init_IRQ we are called here every time an
  * lguest device needs an interrupt.
  * lguest device needs an interrupt.
  *
  *
- * FIXME: irq_to_desc_alloc_node() can fail due to lack of memory, we should
+ * FIXME: irq_alloc_desc_at() can fail due to lack of memory, we should
  * pass that up!
  * pass that up!
  */
  */
 void lguest_setup_irq(unsigned int irq)
 void lguest_setup_irq(unsigned int irq)
 {
 {
-	irq_to_desc_alloc_node(irq, 0);
+	irq_alloc_desc_at(irq, 0);
 	set_irq_chip_and_handler_name(irq, &lguest_irq_controller,
 	set_irq_chip_and_handler_name(irq, &lguest_irq_controller,
 				      handle_level_irq, "level");
 				      handle_level_irq, "level");
 }
 }