drm-openchrome: Branch 'drm-next-6.8' - drivers/gpu/drm
Kevin Brace
kevinbrace at kemper.freedesktop.org
Tue Jan 16 21:40:19 UTC 2024
drivers/gpu/drm/via/via_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 8ff65229f2d0dea5d4dcd44616652e09617a0437
Author: Kevin Brace <kevinbrace at bracecomputerlab.com>
Date: Tue Jan 16 15:16:28 2024 -0600
drm/via: Remove DRM_UNLOCKED from OpenChrome DRM uAPI IOCTL flags
It probably should not have been added to the OpenChrome DRM uAPI IOCTL
flags entry in the first place. This commit is in response to commit
2798ffc (drm: Remove locking for legacy ioctls and DRM_UNLOCKED).
Signed-off-by: Kevin Brace <kevinbrace at bracecomputerlab.com>
diff --git a/drivers/gpu/drm/via/via_drv.c b/drivers/gpu/drm/via/via_drv.c
index 932afe95ce6d..2f5155a193f4 100644
--- a/drivers/gpu/drm/via/via_drv.c
+++ b/drivers/gpu/drm/via/via_drv.c
@@ -169,8 +169,8 @@ static const struct drm_ioctl_desc via_driver_ioctls[] = {
DRM_IOCTL_DEF_DRV(VIA_WAIT_IRQ, drm_invalid_op, DRM_AUTH),
DRM_IOCTL_DEF_DRV(VIA_DMA_BLIT, drm_invalid_op, DRM_AUTH),
DRM_IOCTL_DEF_DRV(VIA_BLIT_SYNC, drm_invalid_op, DRM_AUTH),
- DRM_IOCTL_DEF_DRV(VIA_GEM_ALLOC, via_gem_alloc_ioctl, DRM_AUTH | DRM_UNLOCKED),
- DRM_IOCTL_DEF_DRV(VIA_GEM_MMAP, via_gem_mmap_ioctl, DRM_AUTH | DRM_UNLOCKED),
+ DRM_IOCTL_DEF_DRV(VIA_GEM_ALLOC, via_gem_alloc_ioctl, DRM_AUTH),
+ DRM_IOCTL_DEF_DRV(VIA_GEM_MMAP, via_gem_mmap_ioctl, DRM_AUTH),
};
static const struct file_operations via_driver_fops = {
More information about the openchrome-devel
mailing list