Re: [PATCH] arm64: dts: qcom: Enable lvds panel-DV215FHM-R01 for lemans-evk Mezzanine

From: Konrad Dybcio

Date: Thu Feb 19 2026 - 09:09:08 EST


On 2/19/26 3:05 PM, Gopi Botlagunta wrote:
> LT9211c bridge and lvds panel node.
> LT9211c is powered by default with reset gpio connected to 37.
>
> Signed-off-by: Gopi Botlagunta <venkata.botlagunta@xxxxxxxxxxxxxxxx>
> ---

[...]

> + panel_lvds: panel-lvds@0 {
> + compatible = "panel-lvds";
> +
> + data-mapping = "vesa-24";
> +
> + width-mm = <476>;
> + height-mm = <268>;
> +
> + status = "okay";

The status is "okay" by default for new nodes, drop this line

[...]

> + port@0 {
> + reg = <0>;
> +
> + dual-lvds-odd-pixels;
> + panel_in_lvds_odd: endpoint {

Let's keep a \n between the property and the following subnode

[...]

> +&i2c1 {
> + qcom,load-firmware;
> + qcom,xfer-mode = <1>;

These properties aren't documented and as such this will fail validation
(make dtbs_check)

> + pinctrl-names = "default";
> + pinctrl-0 = <&qup_i2c1_default>;

Please do:

property-n
property-names

in this order

Konrad