Skip to content

Commit 0ea3e1d

Browse files
krzkandersson
authored andcommitted
arm64: dts: qcom: pm6150: correct USB VBUS regulator compatible
The first part of the compatible of USB VBUS node misses ending quote, thus we have one long compatible consisting of two compatible strings leading to dtbs_check warnings: sc7180-idp.dtb: usb-vbus-regulator@1100: compatible:0: 'qcom,pm6150-vbus-reg,\n qcom,pm8150b-vbus-reg' does not match '^[a-zA-Z0-9][a-zA-Z0-9,+\\-._/]+$' sc7180-idp.dtb: /soc@0/spmi@c440000/pmic@0/usb-vbus-regulator@1100: failed to match any schema with compatible: ['qcom,pm6150-vbus-reg,\n qcom,pm8150b-vbus-reg'] Reported-by: Rob Herring <[email protected]> Fixes: f81c2f0 ("arm64: dts: qcom: pm6150: define USB-C related blocks") Signed-off-by: Krzysztof Kozlowski <[email protected]> Reviewed-by: Konrad Dybcio <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Bjorn Andersson <[email protected]>
1 parent f5f390a commit 0ea3e1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm64/boot/dts/qcom/pm6150.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
};
6565

6666
pm6150_vbus: usb-vbus-regulator@1100 {
67-
compatible = "qcom,pm6150-vbus-reg,
68-
qcom,pm8150b-vbus-reg";
67+
compatible = "qcom,pm6150-vbus-reg",
68+
"qcom,pm8150b-vbus-reg";
6969
reg = <0x1100>;
7070
status = "disabled";
7171
};

0 commit comments

Comments
 (0)