Changeset 6c441cf8 in mainline for kernel/arch/ia32xen/src/smp/mps.c


Ignore:
Timestamp:
2008-02-27T11:49:17Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
56976a17
Parents:
fdb7795
Message:

code cleanup (mostly signed/unsigned)
allow extra compiler warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32xen/src/smp/mps.c

    rfdb7795 r6c441cf8  
    7878struct __l_intr_entry *l_intr_entries = NULL;
    7979
    80 int processor_entry_cnt = 0;
    81 int bus_entry_cnt = 0;
    82 int io_apic_entry_cnt = 0;
    83 int io_intr_entry_cnt = 0;
    84 int l_intr_entry_cnt = 0;
     80unsigned int processor_entry_cnt = 0;
     81unsigned int bus_entry_cnt = 0;
     82unsigned int io_apic_entry_cnt = 0;
     83unsigned int io_intr_entry_cnt = 0;
     84unsigned int l_intr_entry_cnt = 0;
    8585
    8686waitq_t ap_completion_wq;
     
    418418int mps_irq_to_pin(unsigned int irq)
    419419{
    420         int i;
     420        unsigned int i;
    421421       
    422422        for (i = 0; i < io_intr_entry_cnt; i++) {
Note: See TracChangeset for help on using the changeset viewer.