diff options
author | Russell King <rmk_cubox@arm.linux.org.uk> | 2013-06-13 14:40:54 +0100 |
---|---|---|
committer | Russell King <rmk@arm.linux.org.uk> | 2013-09-22 15:19:01 +0100 |
commit | 96f9d8df1381ad3a51f78b1804454f870f999618 (patch) | |
tree | 9eccc86ace19300c8a7359d07adbd969b779f2c8 /armada_ioctl.h | |
parent | 0f0a44812dc57b9bb37346e344bcf50235fa4d94 (diff) |
Remove drm_armada_bo_phys() and its associated ioctl
drm_armada_bo_phys() is no longer necessary with dmabuf support, so
drop it from the library. Also get rid of the bo "phys" member.
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
Diffstat (limited to 'armada_ioctl.h')
-rw-r--r-- | armada_ioctl.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/armada_ioctl.h b/armada_ioctl.h index 2bb3146..b031975 100644 --- a/armada_ioctl.h +++ b/armada_ioctl.h @@ -13,10 +13,9 @@ #define DRM_ARMADA_GEM_CREATE_PHYS 0x01 #define DRM_ARMADA_GEM_MMAP 0x02 #define DRM_ARMADA_GEM_PWRITE 0x03 -#define DRM_ARMADA_GEM_PROP 0x04 #define DRM_ARMADA_GEM_CACHE 0x05 #define DRM_ARMADA_OVERLAY_PUT_IMAGE 0x06 -#define DRM_ARMADA_OVERLAY_ATTRS 0x07 +#define DRM_ARMADA_OVERLAY_ATTRS 0x07 #define ARMADA_IOCTL(dir,name,str) \ DRM_##dir(DRM_COMMAND_BASE + DRM_ARMADA_##name, struct drm_armada_##str) @@ -55,13 +54,6 @@ struct drm_armada_gem_pwrite { #define DRM_IOCTL_ARMADA_GEM_PWRITE \ ARMADA_IOCTL(IOW, GEM_PWRITE, gem_pwrite) -struct drm_armada_gem_prop { - uint64_t phys; - uint32_t handle; -}; -#define DRM_IOCTL_ARMADA_GEM_PROP \ - ARMADA_IOCTL(IOWR, GEM_PROP, gem_prop) - struct drm_armada_gem_cache { uint64_t ptr; uint32_t handle; |