diff options
Diffstat (limited to 'drivers/lguest')
-rw-r--r-- | drivers/lguest/lguest.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/lguest/lguest.c b/drivers/lguest/lguest.c index ee1c6d05c3d3..4a579c840301 100644 --- a/drivers/lguest/lguest.c +++ b/drivers/lguest/lguest.c | |||
@@ -893,7 +893,9 @@ static __init char *lguest_memory_setup(void) | |||
893 | 893 | ||
894 | /* The Linux bootloader header contains an "e820" memory map: the | 894 | /* The Linux bootloader header contains an "e820" memory map: the |
895 | * Launcher populated the first entry with our memory limit. */ | 895 | * Launcher populated the first entry with our memory limit. */ |
896 | add_memory_region(E820_MAP->addr, E820_MAP->size, E820_MAP->type); | 896 | add_memory_region(boot_params.e820_map[0].addr, |
897 | boot_params.e820_map[0].size, | ||
898 | boot_params.e820_map[0].type); | ||
897 | 899 | ||
898 | /* This string is for the boot messages. */ | 900 | /* This string is for the boot messages. */ |
899 | return "LGUEST"; | 901 | return "LGUEST"; |