diff options
author | Cyrill Gorcunov <gorcunov@openvz.org> | 2009-05-12 18:51:28 +0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-05-12 17:04:02 +0200 |
commit | b5710ce92a8cf8e3fc0ffc230cfdbfa23463f1c8 (patch) | |
tree | c337c5b1808f5fe99496972eb90ef0aff2ac77e1 | |
parent | 4797f6b021a3fa399942245d07a1feb30df81bb8 (diff) | |
download | linux-3.10-b5710ce92a8cf8e3fc0ffc230cfdbfa23463f1c8.tar.gz linux-3.10-b5710ce92a8cf8e3fc0ffc230cfdbfa23463f1c8.tar.bz2 linux-3.10-b5710ce92a8cf8e3fc0ffc230cfdbfa23463f1c8.zip |
x86/pci: add 4 more return parameters to IO_APIC_get_PCI_irq_vector(), fix
Fix trivial typo in the drivers/pci/hotplug/ibmphp_core.c changes.
[ Impact: build fix ]
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
CC: Yinghai Lu <yinghai@kernel.org>
Cc: eswierk@aristanetworks.com
LKML-Reference: <20090512145128.GA10220@lenovo>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | drivers/pci/hotplug/ibmphp_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/ibmphp_core.c b/drivers/pci/hotplug/ibmphp_core.c index ef53b05a411..79901a0db88 100644 --- a/drivers/pci/hotplug/ibmphp_core.c +++ b/drivers/pci/hotplug/ibmphp_core.c @@ -161,7 +161,7 @@ int ibmphp_init_devno(struct slot **cur_slot) (*cur_slot)->device = PCI_SLOT(rtable->slots[loop].devfn); for (i = 0; i < 4; i++) (*cur_slot)->irq[i] = IO_APIC_get_PCI_irq_vector((int) (*cur_slot)->bus, - (int) (*cur_slot)->device, i. + (int) (*cur_slot)->device, i, &ioapic, &ioapic_pin, &triggering, &polarity); |