ecore-drm2: Remove unused structure

As we don't ever use drmVersionBroken structure in this code, remove it

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-11-15 09:14:50 -05:00
parent 491c059620
commit f5a5a9df44
1 changed files with 0 additions and 19 deletions

View File

@ -393,31 +393,12 @@ typedef struct _drmEventContext
void *user_data);
} drmEventContext;
typedef struct _drmVersionBroken
{
int version_major;
int version_minor;
int version_patchlevel;
size_t name_len;
// WARNING! this does NOT match the system drm.h headers because
// literally drm.h is wrong. the below is correct. drm hapily
// broke its ABI at some point.
char *name;
size_t date_len;
char *date;
size_t desc_len;
char *desc;
} drmVersionBroken;
typedef struct _drmVersion
{
int version_major;
int version_minor;
int version_patchlevel;
int name_len;
// WARNING! this does NOT match the system drm.h headers because
// literally drm.h is wrong. the below is correct. drm hapily
// broke its ABI at some point.
char *name;
int date_len;
char *date;