diff options
author | Cyrill Gorcunov <gorcunov@openvz.org> | 2009-05-12 10:51:28 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-05-12 11:04:02 -0400 |
commit | b5710ce92a8cf8e3fc0ffc230cfdbfa23463f1c8 (patch) | |
tree | c337c5b1808f5fe99496972eb90ef0aff2ac77e1 /drivers | |
parent | 4797f6b021a3fa399942245d07a1feb30df81bb8 (diff) |
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>
Diffstat (limited to 'drivers')
-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 ef53b05a411a..79901a0db885 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) | |||
161 | (*cur_slot)->device = PCI_SLOT(rtable->slots[loop].devfn); | 161 | (*cur_slot)->device = PCI_SLOT(rtable->slots[loop].devfn); |
162 | for (i = 0; i < 4; i++) | 162 | for (i = 0; i < 4; i++) |
163 | (*cur_slot)->irq[i] = IO_APIC_get_PCI_irq_vector((int) (*cur_slot)->bus, | 163 | (*cur_slot)->irq[i] = IO_APIC_get_PCI_irq_vector((int) (*cur_slot)->bus, |
164 | (int) (*cur_slot)->device, i. | 164 | (int) (*cur_slot)->device, i, |
165 | &ioapic, &ioapic_pin, | 165 | &ioapic, &ioapic_pin, |
166 | &triggering, &polarity); | 166 | &triggering, &polarity); |
167 | 167 | ||