Kyungmin Park | c3b92ce | 2010-10-27 15:34:52 -0700 | [diff] [blame] | 1 | #ifndef __RAMOOPS_H |
| 2 | #define __RAMOOPS_H |
| 3 | |
| 4 | /* |
| 5 | * Ramoops platform data |
| 6 | * @mem_size memory size for ramoops |
| 7 | * @mem_address physical memory address to contain ramoops |
| 8 | */ |
| 9 | |
| 10 | struct ramoops_platform_data { |
| 11 | unsigned long mem_size; |
| 12 | unsigned long mem_address; |
Sergiu Iordache | 3e5c4fa | 2011-07-26 16:08:59 -0700 | [diff] [blame] | 13 | unsigned long record_size; |
Sergiu Iordache | 6b4d2a2 | 2011-07-26 16:08:58 -0700 | [diff] [blame] | 14 | int dump_oops; |
Kyungmin Park | c3b92ce | 2010-10-27 15:34:52 -0700 | [diff] [blame] | 15 | }; |
| 16 | |
| 17 | #endif |