From: Andrew Morton Date: Thu, 3 May 2012 05:43:08 +0000 (+1000) Subject: drivers/gpu/drm/gma500/mdfld_device.c: fix build X-Git-Tag: next-20120503~2^2~298 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=09df8933e367c8fc38b167886da9eb41dfb26b64;p=karo-tx-linux.git drivers/gpu/drm/gma500/mdfld_device.c: fix build drivers/gpu/drm/gma500/mdfld_device.c:675: error: expected '}' before ';' token Repairs "cdv: continue synching up with updated reference code". Cc: Alan Cox Cc: Dave Airlie Signed-off-by: Andrew Morton --- diff --git a/drivers/gpu/drm/gma500/mdfld_device.c b/drivers/gpu/drm/gma500/mdfld_device.c index a0bd48cd92f4..717f4db28c3c 100644 --- a/drivers/gpu/drm/gma500/mdfld_device.c +++ b/drivers/gpu/drm/gma500/mdfld_device.c @@ -672,8 +672,8 @@ const struct psb_ops mdfld_chip_ops = { .accel_2d = 0, .pipes = 3, .crtcs = 3, - .lvds_mask = (1 << 1); - .hdmi_mask = (1 << 1); + .lvds_mask = (1 << 1), + .hdmi_mask = (1 << 1), .sgx_offset = MRST_SGX_OFFSET, .chip_setup = mid_chip_setup,