diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-06-02 11:39:14 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-06-02 11:41:10 -0400 |
commit | 60c9e19003763cf2f234f30411c7bafa82dd1c65 (patch) | |
tree | 4a0e5a05a8aa3a95ab43a5e3410eea9b8046e454 | |
parent | 5d943aa6c0d424f4d4a1c96fb2fa2a81e55e1e85 (diff) |
drm/atomic-docs: Spelling fixups
Eric nicely pointed these out, but I failed at git add and lost them.
This fixes up
commit 2f196b7c4b82eeff3574eb2999e78add33ef4361
Author: Daniel Vetter <daniel.vetter@ffwll.ch>
Date: Thu Jun 2 16:21:44 2016 +0200
drm/atomic: Add drm_atomic_crtc_state_for_each_plane_state
to actually do what it says on the tin^Wcommit message.
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
-rw-r--r-- | include/drm/drm_atomic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/drm/drm_atomic.h b/include/drm/drm_atomic.h index d9504dfcd1cc..d12cfb9c6062 100644 --- a/include/drm/drm_atomic.h +++ b/include/drm/drm_atomic.h | |||
@@ -124,9 +124,9 @@ drm_atomic_get_existing_connector_state(struct drm_atomic_state *state, | |||
124 | * | 124 | * |
125 | * Note that this function is in general unsafe since it doesn't check for the | 125 | * Note that this function is in general unsafe since it doesn't check for the |
126 | * required locking for access state structures. Drivers must ensure that it is | 126 | * required locking for access state structures. Drivers must ensure that it is |
127 | * save to access the returned state structure through other means. One commone | 127 | * safe to access the returned state structure through other means. One common |
128 | * example is when planes are fixed to a single CRTC, and the driver knows that | 128 | * example is when planes are fixed to a single CRTC, and the driver knows that |
129 | * the CRTC locks is held already. In that case holding the CRTC locks gives a | 129 | * the CRTC lock is held already. In that case holding the CRTC lock gives a |
130 | * read-lock on all planes connected to that CRTC. But if planes can be | 130 | * read-lock on all planes connected to that CRTC. But if planes can be |
131 | * reassigned things get more tricky. In that case it's better to use | 131 | * reassigned things get more tricky. In that case it's better to use |
132 | * drm_atomic_get_plane_state and wire up full error handling. | 132 | * drm_atomic_get_plane_state and wire up full error handling. |