diff options
author | Oliver O'Halloran <oohall@gmail.com> | 2016-11-17 18:05:19 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-12-21 16:56:17 +1100 |
commit | 5413f5c9a1c3183711f1062ff19dfda39cfb711f (patch) | |
tree | a3bfbee85fcfa92c1ea02c862f3e6821c1a91762 /hw/npu.c | |
parent | 77be3339fba1ea188b19bde5c4199b63c9024a30 (diff) | |
download | skiboot-5413f5c9a1c3183711f1062ff19dfda39cfb711f.zip skiboot-5413f5c9a1c3183711f1062ff19dfda39cfb711f.tar.gz skiboot-5413f5c9a1c3183711f1062ff19dfda39cfb711f.tar.bz2 |
tree-wide: use dt_add_property_u64s() where we can
A few places (mostly old code) were using:
add_property_cells(hi32(number), lo32(number));
This patch converts them to use the helper rather than doing it manually.
Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Reviewed-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw/npu.c')
-rw-r--r-- | hw/npu.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1561,8 +1561,7 @@ static void npu_add_phb_properties(struct npu *p) NPU_NUM_OF_PES); dt_add_property_cells(np, "ibm,opal-reserved-pe", 0); - dt_add_property_cells(np, "ibm,opal-tce-kill", - hi32(tkill), lo32(tkill)); + dt_add_property_u64(np, "ibm,opal-tce-kill", tkill); /* Memory window is exposed as 32-bits non-prefetchable * one because 64-bits prefetchable one is kind of special |