aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen/events.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xen/events.c')
-rw-r--r--drivers/xen/events.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c
index 19a93297e89..0fcfb4a1cea 100644
--- a/drivers/xen/events.c
+++ b/drivers/xen/events.c
@@ -544,7 +544,7 @@ static int find_irq_by_gsi(unsigned gsi)
544 * event channel until the irq actually started up. Return an 544 * event channel until the irq actually started up. Return an
545 * existing irq if we've already got one for the gsi. 545 * existing irq if we've already got one for the gsi.
546 */ 546 */
547int xen_allocate_pirq(unsigned gsi) 547int xen_allocate_pirq(unsigned gsi, char *name)
548{ 548{
549 int irq; 549 int irq;
550 struct physdev_irq irq_op; 550 struct physdev_irq irq_op;
@@ -566,7 +566,7 @@ int xen_allocate_pirq(unsigned gsi)
566 irq = find_unbound_irq(); 566 irq = find_unbound_irq();
567 567
568 set_irq_chip_and_handler_name(irq, &xen_pirq_chip, 568 set_irq_chip_and_handler_name(irq, &xen_pirq_chip,
569 handle_level_irq, "pirq"); 569 handle_level_irq, name);
570 570
571 irq_op.irq = irq; 571 irq_op.irq = irq;
572 if (HYPERVISOR_physdev_op(PHYSDEVOP_alloc_irq_vector, &irq_op)) { 572 if (HYPERVISOR_physdev_op(PHYSDEVOP_alloc_irq_vector, &irq_op)) {