You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
265 B
16 lines
265 B
14 years ago
|
#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
|