EXPORT_SYMBOL(drm_atomic_bridge_chain_disable);
 
 static void drm_atomic_bridge_call_post_disable(struct drm_bridge *bridge,
-                                               struct drm_atomic_state *old_state)
+                                               struct drm_atomic_state *state)
 {
-       if (old_state && bridge->funcs->atomic_post_disable)
-               bridge->funcs->atomic_post_disable(bridge, old_state);
+       if (state && bridge->funcs->atomic_post_disable)
+               bridge->funcs->atomic_post_disable(bridge, state);
        else if (bridge->funcs->post_disable)
                bridge->funcs->post_disable(bridge);
 }
  * drm_atomic_bridge_chain_post_disable - cleans up after disabling all bridges
  *                                       in the encoder chain
  * @bridge: bridge control structure
- * @old_state: old atomic state
+ * @state: atomic state being committed
  *
  * Calls &drm_bridge_funcs.atomic_post_disable (falls back on
  * &drm_bridge_funcs.post_disable) op for all the bridges in the encoder chain,
  * Note: the bridge passed should be the one closest to the encoder
  */
 void drm_atomic_bridge_chain_post_disable(struct drm_bridge *bridge,
-                                         struct drm_atomic_state *old_state)
+                                         struct drm_atomic_state *state)
 {
        struct drm_encoder *encoder;
        struct drm_bridge *next, *limit;
                                                break;
 
                                        drm_atomic_bridge_call_post_disable(next,
-                                                                           old_state);
+                                                                           state);
                                }
                        }
                }
 
-               drm_atomic_bridge_call_post_disable(bridge, old_state);
+               drm_atomic_bridge_call_post_disable(bridge, state);
 
                if (limit)
                        /* Jump all bridges that we have already post_disabled */