mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-01 10:13:58 +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
|