Re: (subset) [PATCH] drm/vc4: hdmi: Simplify the connector state retrieval

2022-02-02 Thread Maxime Ripard
On Thu, 27 Jan 2022 12:14:04 +0100, Maxime Ripard wrote: > When we have the entire DRM state, retrieving the connector state only > requires the drm_connector pointer. Fortunately for us, we have > allocated it as a part of the vc4_hdmi structure, so we can retrieve get > a pointer by simply access

Re: [PATCH] drm/vc4: hdmi: Simplify the connector state retrieval

2022-01-27 Thread Thomas Zimmermann
Am 27.01.22 um 12:14 schrieb Maxime Ripard: When we have the entire DRM state, retrieving the connector state only requires the drm_connector pointer. Fortunately for us, we have allocated it as a part of the vc4_hdmi structure, so we can retrieve get a pointer by simply accessing our field in

[PATCH] drm/vc4: hdmi: Simplify the connector state retrieval

2022-01-27 Thread Maxime Ripard
When we have the entire DRM state, retrieving the connector state only requires the drm_connector pointer. Fortunately for us, we have allocated it as a part of the vc4_hdmi structure, so we can retrieve get a pointer by simply accessing our field in that structure. Signed-off-by: Maxime Ripard -