Skip to content
Snippets Groups Projects
Verified Commit 0b43dd5a authored by Rui Silva's avatar Rui Silva Committed by Caleb Connolly
Browse files

mach-snapdragon: of_fixup: fix property length at writing


The length of a property includes '\0' in a string type one, so
the length passed by needs to have that in account, if not,
when getting the property value it will fail because it
has the wrong size.

Signed-off-by: default avatarRui Miguel Silva <rui.silva@linaro.org>
Reviewed-by: Neil Armstrong's avatarNeil Armstrong <neil.armstrong@linaro.org>
Reviewed-by: Caleb Connolly's avatarCaleb Connolly <caleb.connolly@linaro.org>
Link: https://lore.kernel.org/r/20250227094911.497219-2-rui.silva@linaro.org


Signed-off-by: Caleb Connolly's avatarCaleb Connolly <caleb.connolly@linaro.org>
parent 54d1270b
No related branches found
No related tags found
No related merge requests found
Pipeline #136831 failed with stages
in 2 minutes and 48 seconds
......@@ -86,13 +86,13 @@ static int fixup_qcom_dwc3(struct device_node *glue_np)
}
/* Overwrite "phy-names" to only contain a single entry */
ret = of_write_prop(dwc3, "phy-names", strlen("usb2-phy"), "usb2-phy");
ret = of_write_prop(dwc3, "phy-names", strlen("usb2-phy") + 1, "usb2-phy");
if (ret) {
log_err("Failed to overwrite 'phy-names' property: %d\n", ret);
return ret;
}
ret = of_write_prop(dwc3, "maximum-speed", strlen("high-speed"), "high-speed");
ret = of_write_prop(dwc3, "maximum-speed", strlen("high-speed") + 1, "high-speed");
if (ret) {
log_err("Failed to set 'maximum-speed' property: %d\n", ret);
return ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment