aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/gma500/cdv_device.c
diff options
context:
space:
mode:
authorAlan Cox <alan@linux.intel.com>2011-12-29 09:37:03 -0500
committerDave Airlie <airlied@redhat.com>2012-01-03 04:30:07 -0500
commitb6195aab9ca63a4f6911365f36eb091666fcb15a (patch)
tree3852d3a68333948e8d20ee9c66d16eb1c4154761 /drivers/gpu/drm/gma500/cdv_device.c
parent56125db1eecf8d34d84f7925686110d90724edf0 (diff)
gma500: Fix Cedarview support (Correct version)
And update to the actual product naming as the press release is now out. http://newsroom.intel.com/docs/DOC-2553#pressmaterials - Fixes the wrong ifdef check - Fixes the missing crtc count declaration Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/gma500/cdv_device.c')
-rw-r--r--drivers/gpu/drm/gma500/cdv_device.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/gma500/cdv_device.c b/drivers/gpu/drm/gma500/cdv_device.c
index 7e8028abcc9..4a5b099c3bc 100644
--- a/drivers/gpu/drm/gma500/cdv_device.c
+++ b/drivers/gpu/drm/gma500/cdv_device.c
@@ -327,9 +327,10 @@ static int cdv_chip_setup(struct drm_device *dev)
327/* CDV is much like Poulsbo but has MID like SGX offsets and PM */ 327/* CDV is much like Poulsbo but has MID like SGX offsets and PM */
328 328
329const struct psb_ops cdv_chip_ops = { 329const struct psb_ops cdv_chip_ops = {
330 .name = "Cedartrail", 330 .name = "GMA3600/3650",
331 .accel_2d = 0, 331 .accel_2d = 0,
332 .pipes = 2, 332 .pipes = 2,
333 .crtcs = 2,
333 .sgx_offset = MRST_SGX_OFFSET, 334 .sgx_offset = MRST_SGX_OFFSET,
334 .chip_setup = cdv_chip_setup, 335 .chip_setup = cdv_chip_setup,
335 336