Commit 1758f403 authored by Fabio M. De Francesco's avatar Fabio M. De Francesco Committed by Daniel Vetter

drm: drm_atomic_helper.c: Correct comments format

Corrected comments format in accordance to the Linux style guides.
Signed-off-by: default avatarFabio M. De Francesco <fmdefrancesco@gmail.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20210412124213.4628-3-fmdefrancesco@gmail.com
parent 9237ec1f
...@@ -1018,8 +1018,10 @@ disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state) ...@@ -1018,8 +1018,10 @@ disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
struct drm_encoder *encoder; struct drm_encoder *encoder;
struct drm_bridge *bridge; struct drm_bridge *bridge;
/* Shut down everything that's in the changeset and currently /*
* still on. So need to check the old, saved state. */ * Shut down everything that's in the changeset and currently
* still on. So need to check the old, saved state.
*/
if (!old_conn_state->crtc) if (!old_conn_state->crtc)
continue; continue;
...@@ -1953,8 +1955,10 @@ static int stall_checks(struct drm_crtc *crtc, bool nonblock) ...@@ -1953,8 +1955,10 @@ static int stall_checks(struct drm_crtc *crtc, bool nonblock)
list_for_each_entry(commit, &crtc->commit_list, commit_entry) { list_for_each_entry(commit, &crtc->commit_list, commit_entry) {
if (i == 0) { if (i == 0) {
completed = try_wait_for_completion(&commit->flip_done); completed = try_wait_for_completion(&commit->flip_done);
/* Userspace is not allowed to get ahead of the previous /*
* commit with nonblocking ones. */ * Userspace is not allowed to get ahead of the previous
* commit with nonblocking ones.
*/
if (!completed && nonblock) { if (!completed && nonblock) {
spin_unlock(&crtc->commit_lock); spin_unlock(&crtc->commit_lock);
DRM_DEBUG_ATOMIC("[CRTC:%d:%s] busy with a previous commit\n", DRM_DEBUG_ATOMIC("[CRTC:%d:%s] busy with a previous commit\n",
...@@ -2103,9 +2107,11 @@ int drm_atomic_helper_setup_commit(struct drm_atomic_state *state, ...@@ -2103,9 +2107,11 @@ int drm_atomic_helper_setup_commit(struct drm_atomic_state *state,
if (ret) if (ret)
return ret; return ret;
/* Drivers only send out events when at least either current or /*
* Drivers only send out events when at least either current or
* new CRTC state is active. Complete right away if everything * new CRTC state is active. Complete right away if everything
* stays off. */ * stays off.
*/
if (!old_crtc_state->active && !new_crtc_state->active) { if (!old_crtc_state->active && !new_crtc_state->active) {
complete_all(&commit->flip_done); complete_all(&commit->flip_done);
continue; continue;
...@@ -2137,8 +2143,10 @@ int drm_atomic_helper_setup_commit(struct drm_atomic_state *state, ...@@ -2137,8 +2143,10 @@ int drm_atomic_helper_setup_commit(struct drm_atomic_state *state,
} }
for_each_oldnew_connector_in_state(state, conn, old_conn_state, new_conn_state, i) { for_each_oldnew_connector_in_state(state, conn, old_conn_state, new_conn_state, i) {
/* Userspace is not allowed to get ahead of the previous /*
* commit with nonblocking ones. */ * Userspace is not allowed to get ahead of the previous
* commit with nonblocking ones.
*/
if (nonblock && old_conn_state->commit && if (nonblock && old_conn_state->commit &&
!try_wait_for_completion(&old_conn_state->commit->flip_done)) { !try_wait_for_completion(&old_conn_state->commit->flip_done)) {
DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] busy with a previous commit\n", DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] busy with a previous commit\n",
...@@ -2156,8 +2164,10 @@ int drm_atomic_helper_setup_commit(struct drm_atomic_state *state, ...@@ -2156,8 +2164,10 @@ int drm_atomic_helper_setup_commit(struct drm_atomic_state *state,
} }
for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) { for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
/* Userspace is not allowed to get ahead of the previous /*
* commit with nonblocking ones. */ * Userspace is not allowed to get ahead of the previous
* commit with nonblocking ones.
*/
if (nonblock && old_plane_state->commit && if (nonblock && old_plane_state->commit &&
!try_wait_for_completion(&old_plane_state->commit->flip_done)) { !try_wait_for_completion(&old_plane_state->commit->flip_done)) {
DRM_DEBUG_ATOMIC("[PLANE:%d:%s] busy with a previous commit\n", DRM_DEBUG_ATOMIC("[PLANE:%d:%s] busy with a previous commit\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment