Changeset 623b49f1 in mainline for kernel/arch/ia32xen/src/smp/apic.c
- Timestamp:
- 2007-01-29T19:22:04Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1004b37
- Parents:
- 7d07bf3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32xen/src/smp/apic.c
r7d07bf3 r623b49f1 125 125 { 126 126 io_apic_id_t idreg; 127 int i;127 unsigned int i; 128 128 129 129 exc_register(VECTOR_APIC_SPUR, "apic_spurious", (iroutine) apic_spurious); … … 529 529 { 530 530 io_redirection_reg_t reg; 531 int i, pin; 532 533 for (i=0;i<16;i++) { 534 if (irqmask & (1<<i)) { 531 unsigned int i; 532 int pin; 533 534 for (i = 0; i < 16; i++) { 535 if (irqmask & (1 << i)) { 535 536 /* 536 537 * Mask the signal input in IO APIC if there is a … … 554 555 void io_apic_enable_irqs(uint16_t irqmask) 555 556 { 556 int i, pin; 557 unsigned int i; 558 int pin; 557 559 io_redirection_reg_t reg; 558 560 559 for (i =0;i<16;i++) {560 if (irqmask & (1 <<i)) {561 for (i = 0; i < 16; i++) { 562 if (irqmask & (1 << i)) { 561 563 /* 562 564 * Unmask the signal input in IO APIC if there is a
Note:
See TracChangeset
for help on using the changeset viewer.