Merge branch 'stable/for-jens' of git://git.kernel.org/pub/scm/linux/kernel/git/konra...
[linux-2.6-block.git] / include / linux / ramoops.h
CommitLineData
c3b92ce9
KP
1#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;
3e5c4fad 13 unsigned long record_size;
6b4d2a27 14 int dump_oops;
c3b92ce9
KP
15};
16
17#endif