Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 425132fd authored by Boris Brezillon's avatar Boris Brezillon
Browse files

drm/connector: Pass a drm_connector_state to ->atomic_commit()



Other atomic hooks are passed state objects, let's change this one to
be consistent.

Signed-off-by: default avatarBoris Brezillon <boris.brezillon@bootlin.com>
Acked-by: default avatarLiviu Dudau <liviu.dudau@arm.com>
Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20180703075022.15138-3-boris.brezillon@bootlin.com
parent b82c1f8f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1187,7 +1187,7 @@ static void drm_atomic_helper_commit_writebacks(struct drm_device *dev,


		if (new_conn_state->writeback_job && new_conn_state->writeback_job->fb) {
		if (new_conn_state->writeback_job && new_conn_state->writeback_job->fb) {
			WARN_ON(connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK);
			WARN_ON(connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK);
			funcs->atomic_commit(connector, new_conn_state->writeback_job);
			funcs->atomic_commit(connector, new_conn_state);
		}
		}
	}
	}
}
}
+3 −1
Original line number Original line Diff line number Diff line
@@ -980,11 +980,13 @@ struct drm_connector_helper_funcs {
	 *
	 *
	 * This hook is to be used by drivers implementing writeback connectors
	 * This hook is to be used by drivers implementing writeback connectors
	 * that need a point when to commit the writeback job to the hardware.
	 * that need a point when to commit the writeback job to the hardware.
	 * The writeback_job to commit is available in
	 * &drm_connector_state.writeback_job.
	 *
	 *
	 * This callback is used by the atomic modeset helpers.
	 * This callback is used by the atomic modeset helpers.
	 */
	 */
	void (*atomic_commit)(struct drm_connector *connector,
	void (*atomic_commit)(struct drm_connector *connector,
			      struct drm_writeback_job *writeback_job);
			      struct drm_connector_state *state);
};
};


/**
/**