Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 71018
b: refs/heads/master
c: 20d225b
h: refs/heads/master
v: v3
  • Loading branch information
Yinghai Lu authored and Thomas Gleixner committed Oct 17, 2007
1 parent 5000c42 commit 0ddceb8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 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: 382f64ab8f178fe6ca5e7beafa7f03132724bbfb
refs/heads/master: 20d225b991c88d9f46f6169be3cfc113ea2bf82d
5 changes: 5 additions & 0 deletions trunk/arch/x86/kernel/io_apic_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -1296,6 +1296,11 @@ static void __init setup_IO_APIC_irqs(void)
continue;
}

if (!first_notcon) {
apic_printk(APIC_VERBOSE, " not connected.\n");
first_notcon = 1;
}

entry.trigger = irq_trigger(idx);
entry.polarity = irq_polarity(idx);

Expand Down
6 changes: 5 additions & 1 deletion trunk/arch/x86/kernel/io_apic_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -875,6 +875,10 @@ static void __init setup_IO_APIC_irqs(void)
apic_printk(APIC_VERBOSE, ", %d-%d", mp_ioapics[apic].mpc_apicid, pin);
continue;
}
if (!first_notcon) {
apic_printk(APIC_VERBOSE, " not connected.\n");
first_notcon = 1;
}

irq = pin_2_irq(idx, apic, pin);
add_pin_to_irq(irq, apic, pin);
Expand All @@ -885,7 +889,7 @@ static void __init setup_IO_APIC_irqs(void)
}

if (!first_notcon)
apic_printk(APIC_VERBOSE," not connected.\n");
apic_printk(APIC_VERBOSE, " not connected.\n");
}

/*
Expand Down

0 comments on commit 0ddceb8

Please sign in to comment.