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