Changeset 76cec1e in mainline for include/mm/page.h


Ignore:
Timestamp:
2005-07-15T21:57:30Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b4a4c5e3
Parents:
e41c47e
Message:

Huge indentation fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/mm/page.h

    re41c47e r76cec1e  
    4343#define PAGE_EXEC_SHIFT                 5
    4444
    45 #define PAGE_NOT_CACHEABLE      (0<<PAGE_CACHEABLE_SHIFT)
    46 #define PAGE_CACHEABLE          (1<<PAGE_CACHEABLE_SHIFT)
     45#define PAGE_NOT_CACHEABLE      (0<<PAGE_CACHEABLE_SHIFT)
     46#define PAGE_CACHEABLE          (1<<PAGE_CACHEABLE_SHIFT)
    4747
    48 #define PAGE_PRESENT            (0<<PAGE_PRESENT_SHIFT)
    49 #define PAGE_NOT_PRESENT        (1<<PAGE_PRESENT_SHIFT)
     48#define PAGE_PRESENT            (0<<PAGE_PRESENT_SHIFT)
     49#define PAGE_NOT_PRESENT        (1<<PAGE_PRESENT_SHIFT)
    5050
    51 #define PAGE_USER               (1<<PAGE_USER_SHIFT)
    52 #define PAGE_KERNEL             (0<<PAGE_USER_SHIFT)
     51#define PAGE_USER               (1<<PAGE_USER_SHIFT)
     52#define PAGE_KERNEL             (0<<PAGE_USER_SHIFT)
    5353
    5454#define PAGE_READ               (1<<PAGE_READ_SHIFT)
Note: See TracChangeset for help on using the changeset viewer.