-
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
Kyungmin Park
authored and
Linus Torvalds
committed
Oct 28, 2010
1 parent
521df5d
commit 210fc5f
Showing
3 changed files
with
44 additions
and
3 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: 5de1cb2d0f1c1e5475d2bedf65b76828f8cdde22 | ||
refs/heads/master: c3b92ce9e75f6353104fc7f8e32fb9fdb2550ad0 |
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,15 @@ | ||
#ifndef __RAMOOPS_H | ||
#define __RAMOOPS_H | ||
|
||
/* | ||
* Ramoops platform data | ||
* @mem_size memory size for ramoops | ||
* @mem_address physical memory address to contain ramoops | ||
*/ | ||
|
||
struct ramoops_platform_data { | ||
unsigned long mem_size; | ||
unsigned long mem_address; | ||
}; | ||
|
||
#endif |