Commit 6067fddc authored by Fernando Ramos's avatar Fernando Ramos Committed by Sean Paul

drm/omapdrm: cleanup: drm_modeset_lock_all() --> DRM_MODESET_LOCK_ALL_BEGIN()

As requested in Documentation/gpu/todo.rst, replace driver calls to
drm_modeset_lock_all() with DRM_MODESET_LOCK_ALL_BEGIN() and
DRM_MODESET_LOCK_ALL_END()
Signed-off-by: default avatarFernando Ramos <greenfoo@u92.eu>
Reviewed-by: default avatarSean Paul <sean@poorly.run>
Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20210924064324.229457-10-greenfoo@u92.eu
parent 26723c3d
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#include <drm/drm_modeset_helper.h> #include <drm/drm_modeset_helper.h>
#include <drm/drm_fourcc.h> #include <drm/drm_fourcc.h>
#include <drm/drm_gem_framebuffer_helper.h> #include <drm/drm_gem_framebuffer_helper.h>
#include <drm/drm_drv.h>
#include "omap_dmm_tiler.h" #include "omap_dmm_tiler.h"
#include "omap_drv.h" #include "omap_drv.h"
...@@ -62,15 +63,17 @@ static int omap_framebuffer_dirty(struct drm_framebuffer *fb, ...@@ -62,15 +63,17 @@ static int omap_framebuffer_dirty(struct drm_framebuffer *fb,
unsigned num_clips) unsigned num_clips)
{ {
struct drm_crtc *crtc; struct drm_crtc *crtc;
struct drm_modeset_acquire_ctx ctx;
int ret;
drm_modeset_lock_all(fb->dev); DRM_MODESET_LOCK_ALL_BEGIN(fb->dev, ctx, 0, ret);
drm_for_each_crtc(crtc, fb->dev) drm_for_each_crtc(crtc, fb->dev)
omap_crtc_flush(crtc); omap_crtc_flush(crtc);
drm_modeset_unlock_all(fb->dev); DRM_MODESET_LOCK_ALL_END(fb->dev, ctx, ret);
return 0; return ret;
} }
static const struct drm_framebuffer_funcs omap_framebuffer_funcs = { static const struct drm_framebuffer_funcs omap_framebuffer_funcs = {
......
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