Changeset b3f8fb7 in mainline for kernel/arch/mips32/include/mm/page.h


Ignore:
Timestamp:
2007-01-28T13:25:49Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8e8c1a5
Parents:
1ba41c5
Message:

huge type system cleanup
remove cyclical type dependencies across multiple header files
many minor coding style fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/include/mm/page.h

    r1ba41c5 rb3f8fb7  
    4444
    4545#ifndef __ASM__
    46 #  define KA2PA(x)      (((uintptr_t) (x)) - 0x80000000)
    47 #  define PA2KA(x)      (((uintptr_t) (x)) + 0x80000000)
     46#       define KA2PA(x) (((uintptr_t) (x)) - 0x80000000)
     47#       define PA2KA(x) (((uintptr_t) (x)) + 0x80000000)
    4848#else
    49 #  define KA2PA(x)      ((x) - 0x80000000)
    50 #  define PA2KA(x)      ((x) + 0x80000000)
     49#       define KA2PA(x) ((x) - 0x80000000)
     50#       define PA2KA(x) ((x) + 0x80000000)
    5151#endif
    5252
     
    110110#ifndef __ASM__
    111111
    112 #include <arch/mm/tlb.h>
    113 #include <mm/page.h>
    114 #include <arch/mm/frame.h>
    115 #include <arch/types.h>
     112#include <mm/mm.h>
     113#include <arch/exception.h>
    116114
    117115static inline int get_pt_flags(pte_t *pt, index_t i)
Note: See TracChangeset for help on using the changeset viewer.