Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 99761
b: refs/heads/master
c: 6df8809
h: refs/heads/master
i:
  99759: 0b3e603
v: v3
  • Loading branch information
Yinghai Lu authored and Ingo Molnar committed Jul 8, 2008
1 parent 8363631 commit b775c56
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d867e5310bd3c560093d39669ef52ff7f1b5711a
refs/heads/master: 6df8809bbd1b48cc6d428df7372ed749c8711641
26 changes: 13 additions & 13 deletions trunk/arch/x86/kernel/acpi/boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -962,8 +962,8 @@ void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)

void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
{
int ioapic = -1;
int pin = -1;
int ioapic;
int pin;

/*
* Convert 'gsi' to 'ioapic.pin'.
Expand Down Expand Up @@ -997,8 +997,9 @@ void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)

void __init mp_config_acpi_legacy_irqs(void)
{
int i = 0;
int ioapic = -1;
int i;
int ioapic;
unsigned int dstapic;

#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
/*
Expand All @@ -1023,6 +1024,7 @@ void __init mp_config_acpi_legacy_irqs(void)
ioapic = mp_find_ioapic(0);
if (ioapic < 0)
return;
dstapic = mp_ioapics[ioapic].mp_apicid;

/*
* Use the default configuration for the IRQs 0-15. Unless
Expand All @@ -1031,11 +1033,6 @@ void __init mp_config_acpi_legacy_irqs(void)
for (i = 0; i < 16; i++) {
int idx;

mp_irqs[mp_irq_entries].mp_type = MP_INTSRC;
mp_irqs[mp_irq_entries].mp_irqflag = 0; /* Conforming */
mp_irqs[mp_irq_entries].mp_srcbus = MP_ISA_BUS;
mp_irqs[mp_irq_entries].mp_dstapic = mp_ioapics[ioapic].mp_apicid;

for (idx = 0; idx < mp_irq_entries; idx++) {
struct mp_config_intsrc *irq = mp_irqs + idx;

Expand All @@ -1045,9 +1042,8 @@ void __init mp_config_acpi_legacy_irqs(void)
break;

/* Do we already have a mapping for this IOAPIC pin */
if ((irq->mp_dstapic ==
mp_irqs[mp_irq_entries].mp_dstapic) &&
(irq->mp_dstirq == i))
if (irq->mp_dstapic == dstapic &&
irq->mp_dstirq == i)
break;
}

Expand All @@ -1056,8 +1052,12 @@ void __init mp_config_acpi_legacy_irqs(void)
continue; /* IRQ already used */
}

mp_irqs[mp_irq_entries].mp_type = MP_INTSRC;
mp_irqs[mp_irq_entries].mp_irqflag = 0; /* Conforming */
mp_irqs[mp_irq_entries].mp_srcbus = MP_ISA_BUS;
mp_irqs[mp_irq_entries].mp_dstapic = dstapic;
mp_irqs[mp_irq_entries].mp_irqtype = mp_INT;
mp_irqs[mp_irq_entries].mp_srcbusirq = i; /* Identity mapped */
mp_irqs[mp_irq_entries].mp_srcbusirq = i; /* Identity mapped */
mp_irqs[mp_irq_entries].mp_dstirq = i;

if (++mp_irq_entries == MAX_IRQ_SOURCES)
Expand Down

0 comments on commit b775c56

Please sign in to comment.