On Mon, Jun 08, 2026 at 04:35:59PM +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-combiner.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/bridge/imx/imx8qxp-pixel-combiner.c > b/drivers/gpu/drm/bridge/imx/imx8qxp-pixel-combiner.c > index e0ee51a9ca7f..941ce2f91e9e 100644 > --- a/drivers/gpu/drm/bridge/imx/imx8qxp-pixel-combiner.c > +++ b/drivers/gpu/drm/bridge/imx/imx8qxp-pixel-combiner.c > @@ -249,11 +249,11 @@ imx8qxp_pc_bridge_atomic_get_output_bus_fmts(struct > drm_bridge *bridge, > } > > static const struct drm_bridge_funcs imx8qxp_pc_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]> > .mode_valid = imx8qxp_pc_bridge_mode_valid, > .attach = imx8qxp_pc_bridge_attach, > .mode_set = imx8qxp_pc_bridge_mode_set, > .atomic_disable = imx8qxp_pc_bridge_atomic_disable, > .atomic_get_input_bus_fmts = > > -- > 2.54.0 > -- Regards, Liu Ying
