On Mon, Jun 08, 2026 at 04:36:00PM +0200, Maxime Ripard wrote: > The drm_bridge_funcs.atomic_reset callback and its > drm_atomic_helper_bridge_reset() helper are deprecated. > > Switch to the atomic_create_state callback and its > drm_atomic_helper_bridge_create_state() counterpart. > > Reviewed-by: Thomas Zimmermann <[email protected]> > Signed-off-by: Maxime Ripard <[email protected]> > --- > To: Liu Ying <[email protected]> > To: Frank Li <[email protected]> > To: Sascha Hauer <[email protected]> > Cc: Pengutronix Kernel Team <[email protected]> > Cc: Fabio Estevam <[email protected]> > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > --- > drivers/gpu/drm/bridge/imx/imx8qxp-pixel-link.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/bridge/imx/imx8qxp-pixel-link.c > b/drivers/gpu/drm/bridge/imx/imx8qxp-pixel-link.c > index ee6b6dbbe952..92b8b1ac35d0 100644 > --- a/drivers/gpu/drm/bridge/imx/imx8qxp-pixel-link.c > +++ b/drivers/gpu/drm/bridge/imx/imx8qxp-pixel-link.c > @@ -227,11 +227,11 @@ > imx8qxp_pixel_link_bridge_atomic_get_output_bus_fmts(struct drm_bridge > *bridge, > } > > static const struct drm_bridge_funcs imx8qxp_pixel_link_bridge_funcs = { > .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state, > .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state, > - .atomic_reset = drm_atomic_helper_bridge_reset, > + .atomic_create_state = drm_atomic_helper_bridge_create_state,
Nit: drop a tab after .atomic_create_state to align '=' characters vertically. Reviewed-by: Liu Ying <[email protected]> > .attach = imx8qxp_pixel_link_bridge_attach, > .mode_set = imx8qxp_pixel_link_bridge_mode_set, > .atomic_enable = imx8qxp_pixel_link_bridge_atomic_enable, > .atomic_disable = imx8qxp_pixel_link_bridge_atomic_disable, > .atomic_get_input_bus_fmts = > > -- > 2.54.0 > -- Regards, Liu Ying
