diff options
author | Vasant Hegde <hegdevasant@linux.vnet.ibm.com> | 2019-02-28 11:41:59 +0530 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2019-03-01 15:14:27 +1100 |
commit | 4f0ceb63e951a74e2f49f8054fab17cd029a70a1 (patch) | |
tree | 73dfb82572d1902e83725ea8b0a9744045497f89 /hdata | |
parent | c526a280dcd1ba1ef85a59da98ffaf904b39bc57 (diff) | |
download | skiboot-4f0ceb63e951a74e2f49f8054fab17cd029a70a1.zip skiboot-4f0ceb63e951a74e2f49f8054fab17cd029a70a1.tar.gz skiboot-4f0ceb63e951a74e2f49f8054fab17cd029a70a1.tar.bz2 |
hdata/memory: Removed share-id property
Commit f35a3c37 (hdata/memory: Remove find_shared()) replaed find_shared()
with dt_find_name_addr(). Now we do not need PRIVATE share-id property.
Lets remove this property.
CC: Oliver O'Halloran <oohall@gmail.com>
Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
Reviewed-by: Oliver O'Halloran <oohall@gmail.com>
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'hdata')
-rw-r--r-- | hdata/memory.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/hdata/memory.c b/hdata/memory.c index a85f4eb..bd9671a 100644 --- a/hdata/memory.c +++ b/hdata/memory.c @@ -200,9 +200,6 @@ static bool add_address_range(struct dt_node *root, dt_add_property_u64s(mem, "reg", reg[0], reg[1]); dt_add_property_cells(mem, "ibm,chip-id", chip_id); - if (be16_to_cpu(id->flags) & MS_AREA_SHARED) - dt_add_property_cells(mem, DT_PRIVATE "share-id", - be16_to_cpu(id->share_id)); return true; } |