diff options
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/hotplug/ibmphp_core.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/pci/hotplug/ibmphp_core.c b/drivers/pci/hotplug/ibmphp_core.c index 79901a0db885..42e4260c3b12 100644 --- a/drivers/pci/hotplug/ibmphp_core.c +++ b/drivers/pci/hotplug/ibmphp_core.c | |||
@@ -155,15 +155,13 @@ int ibmphp_init_devno(struct slot **cur_slot) | |||
155 | for (loop = 0; loop < len; loop++) { | 155 | for (loop = 0; loop < len; loop++) { |
156 | if ((*cur_slot)->number == rtable->slots[loop].slot && | 156 | if ((*cur_slot)->number == rtable->slots[loop].slot && |
157 | (*cur_slot)->bus == rtable->slots[loop].bus) { | 157 | (*cur_slot)->bus == rtable->slots[loop].bus) { |
158 | int ioapic = -1, ioapic_pin = -1; | 158 | struct io_apic_irq_attr irq_attr; |
159 | int triggering, polarity; | ||
160 | 159 | ||
161 | (*cur_slot)->device = PCI_SLOT(rtable->slots[loop].devfn); | 160 | (*cur_slot)->device = PCI_SLOT(rtable->slots[loop].devfn); |
162 | for (i = 0; i < 4; i++) | 161 | for (i = 0; i < 4; i++) |
163 | (*cur_slot)->irq[i] = IO_APIC_get_PCI_irq_vector((int) (*cur_slot)->bus, | 162 | (*cur_slot)->irq[i] = IO_APIC_get_PCI_irq_vector((int) (*cur_slot)->bus, |
164 | (int) (*cur_slot)->device, i, | 163 | (int) (*cur_slot)->device, i, |
165 | &ioapic, &ioapic_pin, | 164 | &irq_attr); |
166 | &triggering, &polarity); | ||
167 | 165 | ||
168 | debug("(*cur_slot)->irq[0] = %x\n", | 166 | debug("(*cur_slot)->irq[0] = %x\n", |
169 | (*cur_slot)->irq[0]); | 167 | (*cur_slot)->irq[0]); |