aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/memblock.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/memblock.h')
-rw-r--r--include/linux/memblock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/memblock.h b/include/linux/memblock.h
index 0fe6dd56a4b4..c9c7b0f344a5 100644
--- a/include/linux/memblock.h
+++ b/include/linux/memblock.h
@@ -27,12 +27,12 @@ struct memblock_region {
27 27
28struct memblock_type { 28struct memblock_type {
29 unsigned long cnt; 29 unsigned long cnt;
30 phys_addr_t size;
31 struct memblock_region regions[MAX_MEMBLOCK_REGIONS+1]; 30 struct memblock_region regions[MAX_MEMBLOCK_REGIONS+1];
32}; 31};
33 32
34struct memblock { 33struct memblock {
35 phys_addr_t current_limit; 34 phys_addr_t current_limit;
35 phys_addr_t memory_size; /* Updated by memblock_analyze() */
36 struct memblock_type memory; 36 struct memblock_type memory;
37 struct memblock_type reserved; 37 struct memblock_type reserved;
38}; 38};