From 0f4452bb51306024fbf4cbf77d8baab20cefba67 Mon Sep 17 00:00:00 2001 From: Daniel Kurtz Date: Mon, 26 Aug 2013 23:39:16 +0800 Subject: libdrm: Make some drm headers compatible with gcc -std=c89 -pedantic The following minor changes were needed to these headers: * Convert // comments to /* */ * No , after final member of enum With these changes, these header files can be included by a program that is built with gcc options: -std=c89 -Werror -pedantic Signed-off-by: Daniel Kurtz Signed-off-by: Eric Anholt Reviewed-by: Eric Anholt --- xf86drmMode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xf86drmMode.h') diff --git a/xf86drmMode.h b/xf86drmMode.h index f8a817cd..5bc60ee0 100644 --- a/xf86drmMode.h +++ b/xf86drmMode.h @@ -218,11 +218,11 @@ typedef struct _drmModeProperty { uint32_t flags; char name[DRM_PROP_NAME_LEN]; int count_values; - uint64_t *values; // store the blob lengths + uint64_t *values; /* store the blob lengths */ int count_enums; struct drm_mode_property_enum *enums; int count_blobs; - uint32_t *blob_ids; // store the blob IDs + uint32_t *blob_ids; /* store the blob IDs */ } drmModePropertyRes, *drmModePropertyPtr; typedef struct _drmModeCrtc { -- cgit v1.2.3