summaryrefslogtreecommitdiff
path: root/include/drm
diff options
context:
space:
mode:
authorPaulo Zanoni <paulo.r.zanoni@intel.com>2012-05-15 21:09:04 (GMT)
committerDave Airlie <airlied@redhat.com>2012-05-17 10:11:38 (GMT)
commit7f88a9bedfb814a2d4d537db8295c524298256cb (patch)
treeddfb291cada7622915622a95ff2263612bdf1715 /include/drm
parent0057d8dd8d378bf88f75736496d779f3c9454b5f (diff)
downloadlinux-fsl-qoriq-7f88a9bedfb814a2d4d537db8295c524298256cb.tar.xz
drm: add 'count' to struct drm_object_properties
This way, we don't need to count every time, so we're a little bit faster and code is a little bit smaller. Change suggested by Ville Syrjälä. Reviewed-by: Rob Clark <rob.clark@linaro.org> Tested-by: Rob Clark <rob.clark@linaro.org> Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drm_crtc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h
index b0c3249..6d36552 100644
--- a/include/drm/drm_crtc.h
+++ b/include/drm/drm_crtc.h
@@ -56,6 +56,7 @@ struct drm_mode_object {
#define DRM_OBJECT_MAX_PROPERTY 16
struct drm_object_properties {
+ int count;
uint32_t ids[DRM_OBJECT_MAX_PROPERTY];
uint64_t values[DRM_OBJECT_MAX_PROPERTY];
};