Ignore:
File:
1 edited

Legend:

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

    rb2e121a r63e27ef  
    4141#include <arch/smp/smp.h>
    4242#include <assert.h>
    43 #include <halt.h>
     43#include <func.h>
    4444#include <typedefs.h>
    4545#include <cpu.h>
     
    9191                return false;
    9292       
    93         return ((processor_entries[i].cpu_flags & 0x01) == 0x01);
     93        return (bool) ((processor_entries[i].cpu_flags & 0x01) == 0x01);
    9494}
    9595
     
    9898        assert(i < processor_entry_cnt);
    9999       
    100         return ((processor_entries[i].cpu_flags & 0x02) == 0x02);
     100        return (bool) ((processor_entries[i].cpu_flags & 0x02) == 0x02);
    101101}
    102102
Note: See TracChangeset for help on using the changeset viewer.