diff options
| author | Jordan Crouse <jcrouse@codeaurora.org> | 2017-03-07 11:14:03 -0700 |
|---|---|---|
| committer | Jordan Crouse <jcrouse@codeaurora.org> | 2017-03-07 14:27:47 -0700 |
| commit | a8cbfeb8b0cab0091572d2cb3ff9b11b37b5a260 (patch) | |
| tree | 402fb8429b957405c1576ea0ebbb3884b8e46a1c /include | |
| parent | 4ffd6a18c4ff505c0bb1fb7ff5863ade12a87342 (diff) | |
drm/msm: Move QTI specific ioctls to avoid conflict
To avoid conflicting with upstream changes when upgrading the kernel
version, move QTI specific ioctls to start at command number 0x40.
This provides plenty of space for the upstream ioctl list to grown
before there are conflicts.
Change-Id: Ic0dedbadad9d3a24467f3d5992104754e31cd769
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/uapi/drm/msm_drm.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/uapi/drm/msm_drm.h b/include/uapi/drm/msm_drm.h index d2f19ac6f536..8ef93938155c 100644 --- a/include/uapi/drm/msm_drm.h +++ b/include/uapi/drm/msm_drm.h @@ -263,10 +263,11 @@ struct drm_msm_event_resp { #define DRM_MSM_GEM_CPU_FINI 0x05 #define DRM_MSM_GEM_SUBMIT 0x06 #define DRM_MSM_WAIT_FENCE 0x07 -#define DRM_SDE_WB_CONFIG 0x08 -#define DRM_MSM_REGISTER_EVENT 0x09 -#define DRM_MSM_DEREGISTER_EVENT 0x0A -#define DRM_MSM_NUM_IOCTLS 0x0B + +#define DRM_SDE_WB_CONFIG 0x40 +#define DRM_MSM_REGISTER_EVENT 0x41 +#define DRM_MSM_DEREGISTER_EVENT 0x42 +#define DRM_MSM_NUM_IOCTLS 0x43 /** * Currently DRM framework supports only VSYNC event. |
