[Skiboot] [PATCH] occ: sensors: Fix the size of the phandle array 'sensors' in DT

Shilpasri G Bhat shilpa.bhat at linux.vnet.ibm.com
Wed Jul 4 19:39:23 AEST 2018


Fixes: 99505c03f493 ("sensor-groups: occ: Add support to disable/enable sensor group")
Signed-off-by: Shilpasri G Bhat <shilpa.bhat at linux.vnet.ibm.com>
---
 hw/occ.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/occ.c b/hw/occ.c
index 95577af..a55bf8e 100644
--- a/hw/occ.c
+++ b/hw/occ.c
@@ -1688,11 +1688,11 @@ void occ_add_sensor_groups(struct dt_node *sg, u32 *phandles, u32 *ptype,
 					_phandles[pcount++] = phandles[k];
 			if (pcount)
 				dt_add_property(node, "sensors", _phandles,
-						pcount);
+						pcount * sizeof(u32));
 			free(_phandles);
 		} else {
 			dt_add_property(node, "sensors", phandles,
-					nr_phandles);
+					nr_phandles * sizeof(u32));
 		}
 		dt_add_property_cells(node, "ops", groups[j].ops);
 	}
-- 
1.8.3.1



More information about the Skiboot mailing list