|
@@ -970,8 +970,10 @@ efi_memory_present_wrapper(unsigned long start, unsigned long end, void *arg)
|
|
* not-overlapping, which is the case
|
|
* not-overlapping, which is the case
|
|
*/
|
|
*/
|
|
int __init
|
|
int __init
|
|
-e820_all_mapped(unsigned long start, unsigned long end, unsigned type)
|
|
|
|
|
|
+e820_all_mapped(unsigned long s, unsigned long e, unsigned type)
|
|
{
|
|
{
|
|
|
|
+ u64 start = s;
|
|
|
|
+ u64 end = e;
|
|
int i;
|
|
int i;
|
|
for (i = 0; i < e820.nr_map; i++) {
|
|
for (i = 0; i < e820.nr_map; i++) {
|
|
struct e820entry *ei = &e820.map[i];
|
|
struct e820entry *ei = &e820.map[i];
|