blob: 484fef81cd3a6f4d36affbecc9b20b623a232408 [file] [log] [blame]
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -07001#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
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