ecore-drm2: Make atomic property values support uint64_t
authorChristopher Michael <cp.michael@samsung.com>
Mon, 1 Apr 2019 12:13:32 +0000 (08:13 -0400)
committerYeongjong Lee <yj34.lee@samsung.com>
Wed, 24 Apr 2019 05:24:47 +0000 (14:24 +0900)
Some Atomic property values are actually uint64_t, so fix the
structure to reflect that.

@fix

src/lib/ecore_drm2/ecore_drm2_private.h

index 25aaac7..62b891f 100644 (file)
@@ -72,7 +72,8 @@ typedef struct _Ecore_Drm2_Atomic_Blob
 
 typedef struct _Ecore_Drm2_Atomic_Property
 {
-   uint32_t id, value;
+   uint32_t id;
+   uint64_t value;
 } Ecore_Drm2_Atomic_Property;
 
 typedef struct _Ecore_Drm2_Connector_State