diff options
Diffstat (limited to 'arch/x86/boot/memory.c')
-rw-r--r-- | arch/x86/boot/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/boot/memory.c b/arch/x86/boot/memory.c index acad32eb4290..8c3c25f35578 100644 --- a/arch/x86/boot/memory.c +++ b/arch/x86/boot/memory.c | |||
@@ -53,7 +53,7 @@ static int detect_memory_e820(void) | |||
53 | 53 | ||
54 | count++; | 54 | count++; |
55 | desc++; | 55 | desc++; |
56 | } while (next && count < E820MAX); | 56 | } while (next && count < ARRAY_SIZE(boot_params.e820_map)); |
57 | 57 | ||
58 | return boot_params.e820_entries = count; | 58 | return boot_params.e820_entries = count; |
59 | } | 59 | } |