mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 06:31:52 +00:00
of: reserved-memory: ignore disabled memory-region nodes
Ignore disabled nodes in the memory-region nodes list and continue to initialize the rest of enabled nodes. Check if the "reserved-memory" node is available and if it's not available, return 0 to ignore the "reserved-memory" node and continue parsing with next node in memory-region nodes list. Signed-off-by: Krishna Reddy <vdumpa@nvidia.com> Signed-off-by: Puneet Saxena <puneets@nvidia.com> Signed-off-by: Rob Herring <robh@kernel.org>
This commit is contained in:
parent
2496f17772
commit
d698a38814
@ -324,6 +324,9 @@ int of_reserved_mem_device_init_by_idx(struct device *dev,
|
||||
if (!target)
|
||||
return -ENODEV;
|
||||
|
||||
if (!of_device_is_available(target))
|
||||
return 0;
|
||||
|
||||
rmem = __find_rmem(target);
|
||||
of_node_put(target);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user