mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 22:53:55 +08:00
drm/udl: Use framebuffer dma-buf helpers
Replace dma_buf_begin_cpu_access() with drm_gem_fb_begin_cpu_access(); same for _end_cpu_access(). Remove some boiler-plate code. No functional changes. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Noralf Trønnes <noralf@tronnes.org> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20210716140801.1215-3-tzimmermann@suse.de
This commit is contained in:
parent
37408cd825
commit
ce724470a2
@ -6,11 +6,8 @@
|
||||
* Copyright (C) 2009 Roberto De Ioris <roberto@unbit.it>
|
||||
* Copyright (C) 2009 Jaya Kumar <jayakumar.lkml@gmail.com>
|
||||
* Copyright (C) 2009 Bernie Thompson <bernie@plugable.com>
|
||||
|
||||
*/
|
||||
|
||||
#include <linux/dma-buf.h>
|
||||
|
||||
#include <drm/drm_atomic_helper.h>
|
||||
#include <drm/drm_crtc_helper.h>
|
||||
#include <drm/drm_damage_helper.h>
|
||||
@ -271,9 +268,8 @@ static int udl_handle_damage(struct drm_framebuffer *fb, const struct dma_buf_ma
|
||||
int x, int y, int width, int height)
|
||||
{
|
||||
struct drm_device *dev = fb->dev;
|
||||
struct dma_buf_attachment *import_attach = fb->obj[0]->import_attach;
|
||||
void *vaddr = map->vaddr; /* TODO: Use mapping abstraction properly */
|
||||
int i, ret, tmp_ret;
|
||||
int i, ret;
|
||||
char *cmd;
|
||||
struct urb *urb;
|
||||
struct drm_rect clip;
|
||||
@ -290,17 +286,14 @@ static int udl_handle_damage(struct drm_framebuffer *fb, const struct dma_buf_ma
|
||||
else if ((clip.x2 > fb->width) || (clip.y2 > fb->height))
|
||||
return -EINVAL;
|
||||
|
||||
if (import_attach) {
|
||||
ret = dma_buf_begin_cpu_access(import_attach->dmabuf,
|
||||
DMA_FROM_DEVICE);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
ret = drm_gem_fb_begin_cpu_access(fb, DMA_FROM_DEVICE);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
urb = udl_get_urb(dev);
|
||||
if (!urb) {
|
||||
ret = -ENOMEM;
|
||||
goto out_dma_buf_end_cpu_access;
|
||||
goto out_drm_gem_fb_end_cpu_access;
|
||||
}
|
||||
cmd = urb->transfer_buffer;
|
||||
|
||||
@ -313,7 +306,7 @@ static int udl_handle_damage(struct drm_framebuffer *fb, const struct dma_buf_ma
|
||||
&cmd, byte_offset, dev_byte_offset,
|
||||
byte_width);
|
||||
if (ret)
|
||||
goto out_dma_buf_end_cpu_access;
|
||||
goto out_drm_gem_fb_end_cpu_access;
|
||||
}
|
||||
|
||||
if (cmd > (char *)urb->transfer_buffer) {
|
||||
@ -329,14 +322,8 @@ static int udl_handle_damage(struct drm_framebuffer *fb, const struct dma_buf_ma
|
||||
|
||||
ret = 0;
|
||||
|
||||
out_dma_buf_end_cpu_access:
|
||||
if (import_attach) {
|
||||
tmp_ret = dma_buf_end_cpu_access(import_attach->dmabuf,
|
||||
DMA_FROM_DEVICE);
|
||||
if (tmp_ret && !ret)
|
||||
ret = tmp_ret; /* only update ret if not set yet */
|
||||
}
|
||||
|
||||
out_drm_gem_fb_end_cpu_access:
|
||||
drm_gem_fb_end_cpu_access(fb, DMA_FROM_DEVICE);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user