Commit 9afac933 authored by Anshuman Khandual's avatar Anshuman Khandual Committed by Michael Ellerman

powerpc/prom: Use DRCONF flags while processing detected LMBs

Replace hard coded values with existing DRCONF flags while procesing
detected LMBs from the device tree. Does not change any functionality.
Signed-off-by: default avatarAnshuman Khandual <khandual@linux.vnet.ibm.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 8218a303
...@@ -472,9 +472,10 @@ static int __init early_init_dt_scan_drconf_memory(unsigned long node) ...@@ -472,9 +472,10 @@ static int __init early_init_dt_scan_drconf_memory(unsigned long node)
flags = of_read_number(&dm[3], 1); flags = of_read_number(&dm[3], 1);
/* skip DRC index, pad, assoc. list index, flags */ /* skip DRC index, pad, assoc. list index, flags */
dm += 4; dm += 4;
/* skip this block if the reserved bit is set in flags (0x80) /* skip this block if the reserved bit is set in flags
or if the block is not assigned to this partition (0x8) */ or if the block is not assigned to this partition */
if ((flags & 0x80) || !(flags & 0x8)) if ((flags & DRCONF_MEM_RESERVED) ||
!(flags & DRCONF_MEM_ASSIGNED))
continue; continue;
size = memblock_size; size = memblock_size;
rngs = 1; rngs = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment