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

Commit e45fa615 authored by Anand Ravi's avatar Anand Ravi
Browse files

msm: camera: smmu: Fixes label_is_string warning in camera dtsi files



Property 'label' is a reserved property of type string. At present,
device trees use the property as list of strings.

Rename the property to 'cam-smmu-label' to resolve conflict.

CRs-Fixed: 2729703
Change-Id: I8bfb3af4daeaad4cc9dfc633a0256186ba1416c9
Signed-off-by: default avatarAnand Ravi <ananravi@codeaurora.org>
parent 8fe045c3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3864,7 +3864,7 @@ static int cam_populate_smmu_context_banks(struct device *dev,
		of_property_read_bool(dev->of_node, "multiple-client-devices");

	cb->num_shared_hdl = of_property_count_strings(dev->of_node,
		"label");
		"cam-smmu-label");

	if (cb->num_shared_hdl >
		CAM_SMMU_SHARED_HDL_MAX) {
@@ -3877,7 +3877,7 @@ static int cam_populate_smmu_context_banks(struct device *dev,
	/* set the name of the context bank */
	for (i = 0; i < cb->num_shared_hdl; i++)
		rc = of_property_read_string_index(dev->of_node,
		"label", i, &cb->name[i]);
		"cam-smmu-label", i, &cb->name[i]);
	if (rc < 0) {
		CAM_ERR(CAM_SMMU,
			"Error: failed to read label from sub device");