diff options
author | Benet Clark <benetc@codeaurora.org> | 2016-11-16 15:33:23 -0800 |
---|---|---|
committer | Gopikrishnaiah Anandan <agopik@codeaurora.org> | 2016-11-22 14:34:57 -0800 |
commit | 9c89407f8cf87dedba3d99d0af8ee6ef29a5c2b7 (patch) | |
tree | e1a95c5c28a5b04f87ddeaddd38a000ffae3b4bd /include/drm | |
parent | 90607cb04fc744925cd1039c82b8cdf120ef8ddd (diff) |
drm: Increase max number of DRM object properties
The maximum number of properties that can be created for a DRM
object needs to be increased.
Change-Id: Ic0f6d9ec73a6071dbb397b924a4389a9afb81bdc
Signed-off-by: Benet Clark <benetc@codeaurora.org>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_crtc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 3f0c6909dda1..aab1530661a5 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -61,7 +61,7 @@ struct drm_mode_object { struct drm_object_properties *properties; }; -#define DRM_OBJECT_MAX_PROPERTY 24 +#define DRM_OBJECT_MAX_PROPERTY 64 struct drm_object_properties { int count, atomic_count; /* NOTE: if we ever start dynamically destroying properties (ie. |