Re: [Freedreno] [PATCH 3/3] drm/msm/dp: Clean up pdev/dev duplication in dp_power

2023-06-03 Thread Dmitry Baryshkov
On 21/05/2023 06:53, Bjorn Andersson wrote: On Sat, May 20, 2023 at 04:26:59AM +0300, Dmitry Baryshkov wrote: On 15/05/2023 06:02, Bjorn Andersson wrote: The dp_power module keeps track of both the DP controller's struct platform_device and struct device - with the prior pulled out of the dp_pa

Re: [Freedreno] [PATCH 3/3] drm/msm/dp: Clean up pdev/dev duplication in dp_power

2023-05-20 Thread Bjorn Andersson
On Sat, May 20, 2023 at 04:26:59AM +0300, Dmitry Baryshkov wrote: > On 15/05/2023 06:02, Bjorn Andersson wrote: > > The dp_power module keeps track of both the DP controller's struct > > platform_device and struct device - with the prior pulled out of the > > dp_parser module. > > > > Clean up the

Re: [Freedreno] [PATCH 3/3] drm/msm/dp: Clean up pdev/dev duplication in dp_power

2023-05-19 Thread Dmitry Baryshkov
On 15/05/2023 06:02, Bjorn Andersson wrote: The dp_power module keeps track of both the DP controller's struct platform_device and struct device - with the prior pulled out of the dp_parser module. Clean up the duplication by dropping the platform_device reference and just track the passed struc

[Freedreno] [PATCH 3/3] drm/msm/dp: Clean up pdev/dev duplication in dp_power

2023-05-14 Thread Bjorn Andersson
The dp_power module keeps track of both the DP controller's struct platform_device and struct device - with the prior pulled out of the dp_parser module. Clean up the duplication by dropping the platform_device reference and just track the passed struct device. Signed-off-by: Bjorn Andersson ---