From: Christopher Michael Date: Mon, 1 Apr 2019 12:13:32 +0000 (-0400) Subject: ecore-drm2: Make atomic property values support uint64_t X-Git-Tag: submit/tizen/20190424.060632~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d23f72feb5ec60a247bdf88caceafd9c66421083;p=platform%2Fupstream%2Fefl.git ecore-drm2: Make atomic property values support uint64_t Some Atomic property values are actually uint64_t, so fix the structure to reflect that. @fix --- diff --git a/src/lib/ecore_drm2/ecore_drm2_private.h b/src/lib/ecore_drm2/ecore_drm2_private.h index 25aaac7..62b891f 100644 --- a/src/lib/ecore_drm2/ecore_drm2_private.h +++ b/src/lib/ecore_drm2/ecore_drm2_private.h @@ -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