On Wed, Mar 31, 2021 at 01:21:37PM +0200, Adrien Grassein wrote:
> -     lt->data_lanes = of_property_count_u32_elems(endpoint, "data-lanes");
> +     data_lanes = of_property_count_u32_elems(endpoint, "data-lanes");
>       of_node_put(endpoint);
> +     if (data_lanes < 0) {
> +             dev_err(lt->dev, "%s: Bad data-lanes property\n", __func__);
> +             return lt->data_lanes;

This needs to be "return data_lanes;"

> +     }
> +     lt->data_lanes = data_lanes;

I really believe that v4 will be the perfect version though...  :)

regards,
dan carpenter

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to