diff options
author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-07-06 15:15:23 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-07-11 13:19:33 -0400 |
commit | 78316ada2222b5e3abc043eea7644e12319042d6 (patch) | |
tree | 92220adf3b6fbcf4d49a7f7933838e9e6464f245 /drivers | |
parent | 34b1d1269d9fdaa1558e3014c3cc03ac0967de95 (diff) |
xen/pci: Remove 'xen_allocate_pirq_gsi'.
In the past (2.6.38) the 'xen_allocate_pirq_gsi' would allocate
an entry in a Linux IRQ -> {XEN_IRQ, type, event, ..} array. All
of that has been removed in 2.6.39 and the Xen IRQ subsystem uses
an linked list that is populated when the call to
'xen_allocate_irq_gsi' (universally done from any of the xen_bind_*
calls) is done. The 'xen_allocate_pirq_gsi' is a NOP and there is
no need for it anymore so lets remove it.
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/xen/events.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c index 23f1b8166a2a..da70f5c32eb9 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c | |||
@@ -615,11 +615,6 @@ static int find_irq_by_gsi(unsigned gsi) | |||
615 | return -1; | 615 | return -1; |
616 | } | 616 | } |
617 | 617 | ||
618 | int xen_allocate_pirq_gsi(unsigned gsi) | ||
619 | { | ||
620 | return gsi; | ||
621 | } | ||
622 | |||
623 | /* | 618 | /* |
624 | * Do not make any assumptions regarding the relationship between the | 619 | * Do not make any assumptions regarding the relationship between the |
625 | * IRQ number returned here and the Xen pirq argument. | 620 | * IRQ number returned here and the Xen pirq argument. |