-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chad Reese
authored and
Ralf Baechle
committed
Jun 5, 2006
1 parent
5ad8e66
commit f51a702
Showing
5 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: ecf52d3c895c8bc069b9ae07c18acf39d846c2ef | ||
refs/heads/master: b1c231f5a57cb4a417c38a8a946f1e66db3bb9c0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef _MIPS_SPARSEMEM_H | ||
#define _MIPS_SPARSEMEM_H | ||
#ifdef CONFIG_SPARSEMEM | ||
|
||
/* | ||
* SECTION_SIZE_BITS 2^N: how big each section will be | ||
* MAX_PHYSMEM_BITS 2^N: how much memory we can have in that space | ||
*/ | ||
#define SECTION_SIZE_BITS 28 | ||
#define MAX_PHYSMEM_BITS 35 | ||
|
||
#endif /* CONFIG_SPARSEMEM */ | ||
#endif /* _MIPS_SPARSEMEM_H */ | ||
|