From: Ville Syrjälä Date: Mon, 19 Dec 2011 22:06:38 +0000 (+0200) Subject: drm: Add a missing ')' X-Git-Tag: v3.3-rc1~121^2~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc5b6f00790da1fd00e6136ba4e4c1c16a581790;p=platform%2Fupstream%2Fkernel-adaptation-pc.git drm: Add a missing ')' The code happened to compile because the flag wasn't actually used yet. Signed-off-by: Ville Syrjälä Signed-off-by: Dave Airlie --- diff --git a/include/drm/drm_mode.h b/include/drm/drm_mode.h index 95d7aad..966fe7d 100644 --- a/include/drm/drm_mode.h +++ b/include/drm/drm_mode.h @@ -268,7 +268,7 @@ struct drm_mode_fb_cmd { __u32 handle; }; -#define DRM_MODE_FB_INTERLACED (1<<0 /* for interlaced framebuffers */ +#define DRM_MODE_FB_INTERLACED (1<<0) /* for interlaced framebuffers */ struct drm_mode_fb_cmd2 { __u32 fb_id;