Changeset a83a802 in mainline for arch/ia32/src/smp/smp.c


Ignore:
Timestamp:
2005-11-23T13:28:17Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8418c7d
Parents:
607c5f9
Message:

SMP work.
Add madt_irq_to_pin().
Make ksmp() use virtual irq_to_pin() function, which makes better sence for ACPI configurations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/smp/smp.c

    r607c5f9 ra83a802  
    166166}
    167167
     168int smp_irq_to_pin(int irq)
     169{
     170        ASSERT(ops != NULL);
     171        return ops->irq_to_pin(irq);
     172}
     173
    168174#endif /* CONFIG_SMP */
Note: See TracChangeset for help on using the changeset viewer.