Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8dfead6c authored by Ben Goz's avatar Ben Goz Committed by Oded Gabbay
Browse files

amdkfd: Fixing topology bug in building sysfs nodes



Original code sent always 0 as the index number of the node. This patch fixes
this bug by sending a variable which is incremented per node.

Signed-off-by: default avatarBen Goz <ben.goz@amd.com>
Reviewed-by: default avatarOded Gabbay <oded.gabbay@amd.com>
Signed-off-by: default avatarOded Gabbay <oded.gabbay@amd.com>
parent b6ffbab8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -921,7 +921,7 @@ static int kfd_build_sysfs_node_tree(void)
	uint32_t i = 0;

	list_for_each_entry(dev, &topology_device_list, list) {
		ret = kfd_build_sysfs_node_entry(dev, 0);
		ret = kfd_build_sysfs_node_entry(dev, i);
		if (ret < 0)
			return ret;
		i++;