diff options
author | Thierry Reding <treding@nvidia.com> | 2017-09-01 16:40:41 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2017-09-01 19:50:24 +0200 |
commit | 2093ea2e098b602e0ecefcd30211193b888da5d3 (patch) | |
tree | 5d16e98e9b7ddfe352ec089d4ad92ed9d2844e61 /include/drm | |
parent | 3ea0bf377903981bd77d71d97200f96793bbbef2 (diff) | |
download | linux-2093ea2e098b602e0ecefcd30211193b888da5d3.tar.gz linux-2093ea2e098b602e0ecefcd30211193b888da5d3.tar.bz2 linux-2093ea2e098b602e0ecefcd30211193b888da5d3.zip |
drm/vtables: Fix typo
The callback is named .atomic_check, not .atomc_check.
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20170901144042.6023-1-thierry.reding@gmail.com
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_modeset_helper_vtables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_modeset_helper_vtables.h b/include/drm/drm_modeset_helper_vtables.h index c55cf3ff6847..16646c44b7df 100644 --- a/include/drm/drm_modeset_helper_vtables.h +++ b/include/drm/drm_modeset_helper_vtables.h @@ -314,7 +314,7 @@ struct drm_crtc_helper_funcs { * implementation in drm_atomic_helper_check(). * * When using drm_atomic_helper_check_planes() this hook is called - * after the &drm_plane_helper_funcs.atomc_check hook for planes, which + * after the &drm_plane_helper_funcs.atomic_check hook for planes, which * allows drivers to assign shared resources requested by planes in this * callback here. For more complicated dependencies the driver can call * the provided check helpers multiple times until the computed state |