Re: [Freedreno] [PATCH 01/13] drm/msm/dpu: cleanup dpu_kms_hw_init error path

2023-07-08 Thread Konrad Dybcio
On 8.07.2023 01:48, Dmitry Baryshkov wrote: > On 08/07/2023 02:25, Konrad Dybcio wrote: >> On 7.07.2023 22:37, Dmitry Baryshkov wrote: >>> It was noticed that dpu_kms_hw_init()'s error path contains several >>> labels which point to the same code path. Replace all of them with a >>> single label. >

Re: [Freedreno] [PATCH 01/13] drm/msm/dpu: cleanup dpu_kms_hw_init error path

2023-07-07 Thread Dmitry Baryshkov
On 08/07/2023 02:25, Konrad Dybcio wrote: On 7.07.2023 22:37, Dmitry Baryshkov wrote: It was noticed that dpu_kms_hw_init()'s error path contains several labels which point to the same code path. Replace all of them with a single label. Suggested-by: Konrad Dybcio it's the first time I'm seei

Re: [Freedreno] [PATCH 01/13] drm/msm/dpu: cleanup dpu_kms_hw_init error path

2023-07-07 Thread Konrad Dybcio
On 7.07.2023 22:37, Dmitry Baryshkov wrote: > It was noticed that dpu_kms_hw_init()'s error path contains several > labels which point to the same code path. Replace all of them with a > single label. > > Suggested-by: Konrad Dybcio it's the first time I'm seeing this code Konrad > Signed-off-by

[Freedreno] [PATCH 01/13] drm/msm/dpu: cleanup dpu_kms_hw_init error path

2023-07-07 Thread Dmitry Baryshkov
It was noticed that dpu_kms_hw_init()'s error path contains several labels which point to the same code path. Replace all of them with a single label. Suggested-by: Konrad Dybcio Signed-off-by: Dmitry Baryshkov --- drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c | 21 + 1 file chang