diff options
author | Steve French <sfrench@us.ibm.com> | 2006-06-06 22:40:03 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-06-06 22:40:03 -0400 |
commit | f3ffb6814408f29817fc84d40ecc9c796acaa3ab (patch) | |
tree | b4702cbdbf2c4517a5986bbaa971495b0f92a877 /include/asm-mips/sparsemem.h | |
parent | 5bafd76593f060540acbea3b61e3087e009aa269 (diff) | |
parent | 1def630a6a49dda5bc89dfbd86656293640456f0 (diff) |
Merge with /pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Diffstat (limited to 'include/asm-mips/sparsemem.h')
-rw-r--r-- | include/asm-mips/sparsemem.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/asm-mips/sparsemem.h b/include/asm-mips/sparsemem.h new file mode 100644 index 000000000000..795ac6c23203 --- /dev/null +++ b/include/asm-mips/sparsemem.h | |||
@@ -0,0 +1,14 @@ | |||
1 | #ifndef _MIPS_SPARSEMEM_H | ||
2 | #define _MIPS_SPARSEMEM_H | ||
3 | #ifdef CONFIG_SPARSEMEM | ||
4 | |||
5 | /* | ||
6 | * SECTION_SIZE_BITS 2^N: how big each section will be | ||
7 | * MAX_PHYSMEM_BITS 2^N: how much memory we can have in that space | ||
8 | */ | ||
9 | #define SECTION_SIZE_BITS 28 | ||
10 | #define MAX_PHYSMEM_BITS 35 | ||
11 | |||
12 | #endif /* CONFIG_SPARSEMEM */ | ||
13 | #endif /* _MIPS_SPARSEMEM_H */ | ||
14 | |||