mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
16 lines
265 B
C
16 lines
265 B
C
|
#ifndef __RAMOOPS_H
|
||
|
#define __RAMOOPS_H
|
||
|
|
||
|
/*
|
||
|
* 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;
|
||
|
};
|
||
|
|
||
|
#endif
|