From: Mark Rustad <[email protected]> Resolve many missing-field-initializers warnings that appear in W=2 builds by changing nested object initialization syntax.
Signed-off-by: Mark Rustad <[email protected]> Signed-off-by: Jeff Kirsher <[email protected]> --- include/drm/drm_modes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/drm/drm_modes.h b/include/drm/drm_modes.h index 91d0582..0a118f3 100644 --- a/include/drm/drm_modes.h +++ b/include/drm/drm_modes.h @@ -86,7 +86,7 @@ enum drm_mode_status { .htotal = (ht), .hskew = (hsk), .vdisplay = (vd), \ .vsync_start = (vss), .vsync_end = (vse), .vtotal = (vt), \ .vscan = (vs), .flags = (f), \ - .base.type = DRM_MODE_OBJECT_MODE + .base = { .type = DRM_MODE_OBJECT_MODE } #define CRTC_INTERLACE_HALVE_V (1 << 0) /* halve V values for interlacing */ #define CRTC_STEREO_DOUBLE (1 << 1) /* adjust timings for stereo modes */ -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

