@@ -37,9 +37,9 @@ aliases {
chosen {
stdout-path = "serial0:115200n8";
};
- dp-connector {
+ connector-dp {
compatible = "dp-connector";
label = "DP";
type = "mini";
@@ -51,9 +51,9 @@ dp_connector_in: endpoint {
};
};
};
- hdmi-connector {
+ connector-hdmi {
compatible = "hdmi-connector";
type = "a";
port {
@@ -195,9 +195,9 @@ pmic_glink_sbu_in: endpoint {
};
};
};
- vph_pwr: vph-pwr-regulator {
+ vph_pwr: regulator-vph-pwr {
compatible = "regulator-fixed";
regulator-name = "vph_pwr";
regulator-min-microvolt = <3700000>;
regulator-max-microvolt = <3700000>;
We like to order node names alphabetically, to aid in this we should prefer naming nodes with the node type (connector, regulator, etc) at the start, so we can group similar types together. Adjust this on rb3gen2 so we can group connectors and regulators together. Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org> --- arch/arm64/boot/dts/qcom/qcs6490-rb3gen2.dts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)