blob: 7105c4b3a24e3d7fcb16c9b45af40d58153854a4 [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 Iordache6b4d2a22011-07-26 16:08:58 -070013 int dump_oops;
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -070014};
15
16#endif