diff options
Diffstat (limited to 'armada_ioctl.h')
-rw-r--r-- | armada_ioctl.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/armada_ioctl.h b/armada_ioctl.h index 780312c..2bb3146 100644 --- a/armada_ioctl.h +++ b/armada_ioctl.h @@ -22,11 +22,7 @@ DRM_##dir(DRM_COMMAND_BASE + DRM_ARMADA_##name, struct drm_armada_##str) struct drm_armada_gem_create { - uint32_t height; - uint32_t width; - uint32_t bpp; uint32_t handle; - uint32_t pitch; uint32_t size; }; #define DRM_IOCTL_ARMADA_GEM_CREATE \ @@ -51,10 +47,10 @@ struct drm_armada_gem_mmap { ARMADA_IOCTL(IOWR, GEM_MMAP, gem_mmap) struct drm_armada_gem_pwrite { + uint64_t ptr; uint32_t handle; uint32_t offset; uint32_t size; - uint64_t ptr; }; #define DRM_IOCTL_ARMADA_GEM_PWRITE \ ARMADA_IOCTL(IOW, GEM_PWRITE, gem_pwrite) |