Re: [PATCH] drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init()

2022-04-10 Thread Abhinav Kumar
On 3/17/2022 5:07 PM, Stephen Boyd wrote: The member 'msm_dsi->connector' isn't assigned until msm_dsi_manager_connector_init() returns (see msm_dsi_modeset_init() and how it assigns the return value). Therefore this pointer is going to be NULL here. Let's use 'connector' which is what was

Re: [PATCH] drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init()

2022-04-10 Thread Dmitry Baryshkov
On 18/03/2022 03:07, Stephen Boyd wrote: The member 'msm_dsi->connector' isn't assigned until msm_dsi_manager_connector_init() returns (see msm_dsi_modeset_init() and how it assigns the return value). Therefore this pointer is going to be NULL here. Let's use 'connector' which is what was

[PATCH] drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init()

2022-03-17 Thread Stephen Boyd
The member 'msm_dsi->connector' isn't assigned until msm_dsi_manager_connector_init() returns (see msm_dsi_modeset_init() and how it assigns the return value). Therefore this pointer is going to be NULL here. Let's use 'connector' which is what was intended. Cc: Dmitry Baryshkov Cc: Sean Paul