diff options
| -rw-r--r-- | drivers/xen/events.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c index 02b5a9c05cf..0e7e394e42f 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c | |||
| @@ -122,7 +122,7 @@ static struct irq_chip xen_pirq_chip; | |||
| 122 | /* Get info for IRQ */ | 122 | /* Get info for IRQ */ |
| 123 | static struct irq_info *info_for_irq(unsigned irq) | 123 | static struct irq_info *info_for_irq(unsigned irq) |
| 124 | { | 124 | { |
| 125 | return get_irq_data(irq); | 125 | return irq_get_handler_data(irq); |
| 126 | } | 126 | } |
| 127 | 127 | ||
| 128 | /* Constructors for packed IRQ information. */ | 128 | /* Constructors for packed IRQ information. */ |
| @@ -403,7 +403,7 @@ static void xen_irq_init(unsigned irq) | |||
| 403 | 403 | ||
| 404 | info->type = IRQT_UNBOUND; | 404 | info->type = IRQT_UNBOUND; |
| 405 | 405 | ||
| 406 | set_irq_data(irq, info); | 406 | irq_set_handler_data(irq, info); |
| 407 | 407 | ||
| 408 | list_add_tail(&info->list, &xen_irq_list_head); | 408 | list_add_tail(&info->list, &xen_irq_list_head); |
| 409 | } | 409 | } |
| @@ -458,11 +458,11 @@ static int __must_check xen_allocate_irq_gsi(unsigned gsi) | |||
| 458 | 458 | ||
| 459 | static void xen_free_irq(unsigned irq) | 459 | static void xen_free_irq(unsigned irq) |
| 460 | { | 460 | { |
| 461 | struct irq_info *info = get_irq_data(irq); | 461 | struct irq_info *info = irq_get_handler_data(irq); |
| 462 | 462 | ||
| 463 | list_del(&info->list); | 463 | list_del(&info->list); |
| 464 | 464 | ||
| 465 | set_irq_data(irq, NULL); | 465 | irq_set_handler_data(irq, NULL); |
| 466 | 466 | ||
| 467 | kfree(info); | 467 | kfree(info); |
| 468 | 468 | ||
| @@ -639,8 +639,8 @@ int xen_bind_pirq_gsi_to_irq(unsigned gsi, | |||
| 639 | if (irq < 0) | 639 | if (irq < 0) |
| 640 | goto out; | 640 | goto out; |
| 641 | 641 | ||
| 642 | set_irq_chip_and_handler_name(irq, &xen_pirq_chip, | 642 | irq_set_chip_and_handler_name(irq, &xen_pirq_chip, handle_level_irq, |
| 643 | handle_level_irq, name); | 643 | name); |
| 644 | 644 | ||
| 645 | irq_op.irq = irq; | 645 | irq_op.irq = irq; |
| 646 | irq_op.vector = 0; | 646 | irq_op.vector = 0; |
| @@ -690,8 +690,8 @@ int xen_bind_pirq_msi_to_irq(struct pci_dev *dev, struct msi_desc *msidesc, | |||
| 690 | if (irq == -1) | 690 | if (irq == -1) |
| 691 | goto out; | 691 | goto out; |
| 692 | 692 | ||
| 693 | set_irq_chip_and_handler_name(irq, &xen_pirq_chip, | 693 | irq_set_chip_and_handler_name(irq, &xen_pirq_chip, handle_level_irq, |
| 694 | handle_level_irq, name); | 694 | name); |
| 695 | 695 | ||
| 696 | xen_irq_info_pirq_init(irq, 0, pirq, 0, vector, 0); | 696 | xen_irq_info_pirq_init(irq, 0, pirq, 0, vector, 0); |
| 697 | ret = irq_set_msi_desc(irq, msidesc); | 697 | ret = irq_set_msi_desc(irq, msidesc); |
| @@ -772,7 +772,7 @@ int bind_evtchn_to_irq(unsigned int evtchn) | |||
| 772 | if (irq == -1) | 772 | if (irq == -1) |
| 773 | goto out; | 773 | goto out; |
| 774 | 774 | ||
| 775 | set_irq_chip_and_handler_name(irq, &xen_dynamic_chip, | 775 | irq_set_chip_and_handler_name(irq, &xen_dynamic_chip, |
| 776 | handle_fasteoi_irq, "event"); | 776 | handle_fasteoi_irq, "event"); |
| 777 | 777 | ||
| 778 | xen_irq_info_evtchn_init(irq, evtchn); | 778 | xen_irq_info_evtchn_init(irq, evtchn); |
| @@ -799,7 +799,7 @@ static int bind_ipi_to_irq(unsigned int ipi, unsigned int cpu) | |||
| 799 | if (irq < 0) | 799 | if (irq < 0) |
| 800 | goto out; | 800 | goto out; |
| 801 | 801 | ||
| 802 | set_irq_chip_and_handler_name(irq, &xen_percpu_chip, | 802 | irq_set_chip_and_handler_name(irq, &xen_percpu_chip, |
| 803 | handle_percpu_irq, "ipi"); | 803 | handle_percpu_irq, "ipi"); |
| 804 | 804 | ||
| 805 | bind_ipi.vcpu = cpu; | 805 | bind_ipi.vcpu = cpu; |
| @@ -848,7 +848,7 @@ int bind_virq_to_irq(unsigned int virq, unsigned int cpu) | |||
| 848 | if (irq == -1) | 848 | if (irq == -1) |
| 849 | goto out; | 849 | goto out; |
| 850 | 850 | ||
| 851 | set_irq_chip_and_handler_name(irq, &xen_percpu_chip, | 851 | irq_set_chip_and_handler_name(irq, &xen_percpu_chip, |
| 852 | handle_percpu_irq, "virq"); | 852 | handle_percpu_irq, "virq"); |
| 853 | 853 | ||
| 854 | bind_virq.virq = virq; | 854 | bind_virq.virq = virq; |
