diff options
author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-06-09 09:49:13 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-07-11 13:19:30 -0400 |
commit | a0ee05670915006564962114d4211dd578a8b28a (patch) | |
tree | d2c2d6599f32af66c9606fb67f31824956f6c0f9 /drivers/xen/events.c | |
parent | ed89eb6396b3307bf9aaa4785f6a0914a68040cf (diff) | |
download | talos-obmc-linux-a0ee05670915006564962114d4211dd578a8b28a.tar.gz talos-obmc-linux-a0ee05670915006564962114d4211dd578a8b28a.zip |
xen/pci: Squash pci_xen_initial_domain and xen_setup_pirqs together.
Since they are only called once and the rest of the pci_xen_*
functions follow the same pattern of setup.
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen/events.c')
-rw-r--r-- | drivers/xen/events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c index 30df85d8fca8..23f1b8166a2a 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c @@ -1693,6 +1693,6 @@ void __init xen_init_IRQ(void) } else { irq_ctx_init(smp_processor_id()); if (xen_initial_domain()) - xen_setup_pirqs(); + pci_xen_initial_domain(); } } |