blob: fa4cb02da41371943d901c6d1f70e38dc6f315c2 [file] [log] [blame]
Anton Vorontsov1894a252012-05-16 05:43:08 -07001#ifndef __LINUX_PSTORE_RAM_H__
2#define __LINUX_PSTORE_RAM_H__
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -07003
4/*
5 * Ramoops platform data
6 * @mem_size memory size for ramoops
7 * @mem_address physical memory address to contain ramoops
8 */
9
10struct ramoops_platform_data {
11 unsigned long mem_size;
12 unsigned long mem_address;
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -070013 unsigned long record_size;
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -070014 int dump_oops;
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -070015};
16
17#endif