Changeset bca1b47 in mainline


Ignore:
Timestamp:
2005-10-05T21:38:45Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cc205f1
Parents:
38a1a84
Message:

Small fix.
MIPS32 pte_t.c is not bool.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/mm/tlb.c

    r38a1a84 rbca1b47  
    4444
    4545static pte_t *find_mapping_and_check(__address badvaddr);
    46 static void prepare_entry_lo(struct entry_lo *lo, bool g, bool v, bool d, bool c, __address pfn);
     46static void prepare_entry_lo(struct entry_lo *lo, bool g, bool v, bool d, int c, __address pfn);
    4747
    4848/** Initialize TLB
     
    339339}
    340340
    341 void prepare_entry_lo(struct entry_lo *lo, bool g, bool v, bool d, bool c, __address pfn)
     341void prepare_entry_lo(struct entry_lo *lo, bool g, bool v, bool d, int c, __address pfn)
    342342{
    343343        lo->g = g;
Note: See TracChangeset for help on using the changeset viewer.