diff options
author | Dave Airlie <airlied@redhat.com> | 2018-07-06 01:52:45 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2018-07-06 03:01:56 +0300 |
commit | a1c3b49523aeb89a7f5ffa852c29db9c4e5ac8dd (patch) | |
tree | 25119ff623073a26f79608c50cdd78a8e8b50078 /drivers/gpu/drm/drm_framebuffer.c | |
parent | c5be9b54034339a7983a1167cdc80dc27fea1799 (diff) | |
parent | 968d72e6a5105a18fe17c0a8b4ef2951d0eb42dd (diff) | |
download | linux-a1c3b49523aeb89a7f5ffa852c29db9c4e5ac8dd.tar.xz |
Merge tag 'drm-misc-next-2018-07-04' of git://anongit.freedesktop.org/drm/drm-misc into drm-next
drm-misc-next for 4.19:
UAPI Changes:
v3d: add fourcc modicfier for fourcc for the Broadcom UIF format (Eric Anholt)
Cross-subsystem Changes:
console/fbcon: Add support for deferred console takeover (Hans de Goede)
Core Changes:
dma-fence clean up, improvements and docs (Daniel Vetter)
add mask function for crtc, plane, encoder and connector DRM objects(Ville Syrjälä)
Driver Changes:
pl111: add Nomadik LCDC variant (Linus Walleij)
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180704234641.GA3981@juma
Diffstat (limited to 'drivers/gpu/drm/drm_framebuffer.c')
-rw-r--r-- | drivers/gpu/drm/drm_framebuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_framebuffer.c b/drivers/gpu/drm/drm_framebuffer.c index ed90974a452a..781af1d42d76 100644 --- a/drivers/gpu/drm/drm_framebuffer.c +++ b/drivers/gpu/drm/drm_framebuffer.c @@ -847,7 +847,7 @@ retry: if (ret) goto unlock; - plane_mask |= BIT(drm_plane_index(plane)); + plane_mask |= drm_plane_mask(plane); } /* This list is only filled when disable_crtcs is set. */ |