2012-05-16 12:43:08 +00:00
|
|
|
#ifndef __LINUX_PSTORE_RAM_H__
|
|
|
|
#define __LINUX_PSTORE_RAM_H__
|
2010-10-27 22:34:52 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
2011-07-26 23:08:59 +00:00
|
|
|
unsigned long record_size;
|
2011-07-26 23:08:58 +00:00
|
|
|
int dump_oops;
|
2010-10-27 22:34:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|